Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to get a textbox name into variable - not value

Status
Not open for further replies.

pinstripe

Programmer
Dec 27, 2004
52
0
0
hi

just shoort question...how to do this

textbox name = code

dim Vcode = code

but if i do it like this i get the value from textbox, insted i need name and name must be without ""

Vcode should read code not "code"

i hope i am clear?
thx
 
Code:
   Dim code As String
    Dim VCode As String
    code = Me.Text0.Name
    VCode = code

________________________________________________________
Zameer Abdulla
Help to find Missing people
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top