I dont get all the properties for objects - intellisense i think is called...

  • Thread starter Thread starter Santiago Gomez
  • Start date Start date
S

Santiago Gomez

first time adding code to a report in access 2000.

when I do something like
me.txtTextbox.

i dont get options like font, visible, backcolor, etc.

Am I missing a Reference? Everything else works fine. I have all of them
loaded i think.

please help.

thanks
 
Santiago:

Change your reference to Me!txttextBox (using the bang rather than the .
operator) The . operator is really designed to reference the underlying
field data rather than the control on the report, which the ! operator will
do.
 
Back
Top