我想根据模块内的输入框值更改报告中文本框的值。
Public Sub ChangeTextBox()
Dim UserText As String
UserText = InputBox("Enter The Value")
'The part I don't understand is how to branch out to the text box name
'I know you have to do something like Form!Formname.textbox name but I'm so confused
'How do I link it to the textbox from within module?
谢谢