Results 1 to 4 of 4

Thread: Want memory textbox

  1. #1

    Thread Starter
    New Member
    Join Date
    Dec 2003
    Location
    Idaho
    Posts
    4

    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?

  2. #2
    Fanatic Member Matt_T_hat's Avatar
    Join Date
    Dec 2001
    Location
    '76 Male Body Evil-Errors: 666
    Posts
    774
    is TextBox not TypeOf Control ?
    ?
    'What's this bit for anyway?
    For Jono

  3. #3
    Frenzied Member vbNeo's Avatar
    Join Date
    May 2002
    Location
    Jutland, Denmark
    Posts
    1,994

    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.

  4. #4
    Fanatic Member Matt_T_hat's Avatar
    Join Date
    Dec 2001
    Location
    '76 Male Body Evil-Errors: 666
    Posts
    774

    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:
    1. Private sub nottextboxes()
    2. Dim Fred, Bob, Tom, Dick, Harry As Variant
    3. 'Store what the hell you like in there now
    4. End Sub
    ?
    'What's this bit for anyway?
    For Jono

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width