Hey,
I am trying to enter a value into an unbound text box in an Access Report. I keep getting the following error:
"You can't assign a value to this object"
Here is the code I am using:
VB Code:
Me.txtJanuary = "Jan = " & MonthP.January
Printable View
Hey,
I am trying to enter a value into an unbound text box in an Access Report. I keep getting the following error:
"You can't assign a value to this object"
Here is the code I am using:
VB Code:
Me.txtJanuary = "Jan = " & MonthP.January
Moved the code to the Footer_Print sub and it worked... previously had it in the Report_Open.
Thanks for the help :P