H
Henk
I want the text typed in by a user in a textbox on a userform to be
transferred to a textbox in the worksheet.
Capturing the typed text is easy :
Textbox.Value
Creating a textbox on the sheegt a bit more complex :
ActiveSheet.OLEObjects.Add(ClassType:="Forms.TextBox.1", Link:=False,
DisplayAsIcon:=False, Left:=528.75, Top:=204, Width:=432,
Height:=77.25).Select
But how do I get the Textbox.Value into the new created textbox?
transferred to a textbox in the worksheet.
Capturing the typed text is easy :
Textbox.Value
Creating a textbox on the sheegt a bit more complex :
ActiveSheet.OLEObjects.Add(ClassType:="Forms.TextBox.1", Link:=False,
DisplayAsIcon:=False, Left:=528.75, Top:=204, Width:=432,
Height:=77.25).Select
But how do I get the Textbox.Value into the new created textbox?