|
-
Jan 15th, 2004, 11:57 AM
#1
Thread Starter
New Member
Want memory textbox
I am working on a map editor and want to load the map into several text boxes so its layers can be parsed. I don't want to use real textboxes because they are used in a class and I want to be able to use many instances of the class with ease.
I have tried "Dim txtMap as TextBox" but that did not work. So I tried "Dim txtMap as New TextBox", but aparently that doesn't work. Can anyone help?
-
Jan 15th, 2004, 12:01 PM
#2
Fanatic Member
is TextBox not TypeOf Control ?
-
Jan 15th, 2004, 12:01 PM
#3
Frenzied Member
ehm
Let me get this straight - you want info to be stored in a textbox, but you don't want it to be a textbox?
"Lies, sanctions, and cruise missiles have never created a free and just society. Only everyday people can do that."
- Zack de la Rocha
Hear me roar.
-
Jan 15th, 2004, 12:06 PM
#4
Fanatic Member
Re: ehm
Originally posted by vbNeo
Let me get this straight - you want info to be stored in a textbox, but you don't want it to be a textbox?
Try this
VB Code:
Private sub nottextboxes()
Dim Fred, Bob, Tom, Dick, Harry As Variant
'Store what the hell you like in there now
End Sub
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
|