G
Guest
When a report opens, I have a input box that captures a name. I would like
that name to be populated in an unbound text box (TextName) on a form.
However, I keep getting the erro message '2448' that I can't assign a value
to the text box....please help...
Private Sub Report_Open(Cancel As Integer)
Dim Message, Title, Default, MyValue As String
Message = "Enter the Name."
Title = "Name"
Default = "JJ"
MyValue = InputBox(Message, Title, Default)
Me.TextName = MyValue
End Sub
that name to be populated in an unbound text box (TextName) on a form.
However, I keep getting the erro message '2448' that I can't assign a value
to the text box....please help...
Private Sub Report_Open(Cancel As Integer)
Dim Message, Title, Default, MyValue As String
Message = "Enter the Name."
Title = "Name"
Default = "JJ"
MyValue = InputBox(Message, Title, Default)
Me.TextName = MyValue
End Sub