.backcolor Not Available

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

OK, I feel stupid.

I writing code to conditionally change the back color of a field on a report
detail line. When I attempt to write something like this -
Me.txtBox.BackColor = 302, I type me. and I get a drop down of my text boxes
then I make it me.txtbox. and I don't have the BackColor drop-down option.
Do I need to add a reference?

Thank you in advance - Darryle
 
OK, I feel stupid.

I writing code to conditionally change the back color of a field on a report
detail line. When I attempt to write something like this -
Me.txtBox.BackColor = 302, I type me. and I get a drop down of my text boxes
then I make it me.txtbox. and I don't have the BackColor drop-down option.
Do I need to add a reference?

Thank you in advance - Darryle

Intellisense is not perfect.
Simply write backcolor = etc. after the dot.
 
OK, now I know I'm stupid. It seems that whenever I encountered an
intellisense problem, I had a reference problem. But to be so bold as to go
ahead and type it in. The wonder of it all!

Thanks - Darryle
 
Back
Top