|
-
Mar 13th, 2002, 11:23 AM
#1
Thread Starter
Junior Member
Get Variable Names from a string
Is it possible to derive a variable name from a string? For example, you read the string "English", and you then create a variable (array) named "English". Is there anyway to do this?
-
Mar 13th, 2002, 02:19 PM
#2
Thread Starter
Junior Member
Geez.....
Are my threads really that boring?!?
-
Mar 13th, 2002, 02:24 PM
#3
cant do dat!
closest you can get to that is specific checking for strings
If thestring = "elephant" Then
Dim elephant
End if
and of course that would be dumb..it really doesnt matter anyway as you have to realize that when your app is compiled..all that stuff is just 1's and 0's. So why would it be importatn to dynamically create a vrailbe from a string during runtime with the name of the string? No reason to do this at all.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|