Sorry wasn't sure how to label this one. I have multiple textboxes on UserFormMain. Whenever a textbox is selected I'm wanting to make x = the path of the selected textbox on UserFormMain.
For instance when this textbox is selected I'm wanting x = UserFormMain.TextBox1.Value and then show the keyboard.
Then this would return the data entered on the keyboard back to the textbox. This is the textbox on UFKeyboard
For instance when this textbox is selected I'm wanting x = UserFormMain.TextBox1.Value and then show the keyboard.
Code:
Private Sub TextBox1_enter()
[COLOR=#00ff00]'' x = ?[/COLOR]
UFKeyboard.Show
End Sub
Then this would return the data entered on the keyboard back to the textbox. This is the textbox on UFKeyboard
Code:
Private Sub TextBox1_Change()
x.Value = UFKeyboard.TextBox1.Value
End Sub