View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Rick Rothstein \(MVP - VB\) Rick Rothstein \(MVP - VB\) is offline
external usenet poster
 
Posts: 2,202
Default Name of Current TextBox on Userform

Try it this way...

Me.Controls(tmp_box).Text

Rick


"dunnerca" wrote in message
...
I have a user form that has a number of text boxes named "T1", "T2", "T3",
etc. I am writing a procedure in which I would like to access the text
box
name (since there are different items to put into the text box depending
on
the identity of the text box). Specifically, I would like to create a
variable by a command such as

tmp_box="T"&str(box_nbr)

When I then try to use this variable in something like

frm_name.tmp_box.value

It doesn't use the "T1", "T2", etc.