In the Report i need to change the value for a textbox at runtime.Below is my code used to change the value.But i m getting an error "Can't assign value to this object".
Plz guide me as how can i change the Textbox value at runtime..
Code:
Private Sub Report_Open(Cancel As Integer)
Dim a As String
a = InputBox("enter the add")
Me.Text2 = a
End Sub
Comment