StuckfromPR
Registered User.
- Local time
- Yesterday, 22:12
- Joined
- Sep 15, 2008
- Messages
- 18
Hello,
I am getting the following error while trying to put a value of a form into a text box of a Report.
You can't assign a value to this object
This is the code
Dim strId As String 'Variable to take data from a form
strId = Forms!Form1!EID_drp.Value 'Getting values from a drop down in Form1
txtName.Value = strId 'Passing the value to a text box.
I am getting the following error while trying to put a value of a form into a text box of a Report.
You can't assign a value to this object
This is the code
Dim strId As String 'Variable to take data from a form
strId = Forms!Form1!EID_drp.Value 'Getting values from a drop down in Form1
txtName.Value = strId 'Passing the value to a text box.