sending a cell to a textbox?

S

scott t

i'm really new to this vba coding ,and hope someone can answer this ., how would i write a code to send a worksheet cell back to a textbox in a userform?
 
B

Bob Phillips

With Userform1
.TextBox1.text = Activesheet.Range("A1"),Text
.Show
End With
--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

scott t said:
i'm really new to this vba coding ,and hope someone can answer this .,
how would i write a code to send a worksheet cell back to a textbox in a
userform?
 
Top