Parameter Problem

  • Thread starter Thread starter fhwa
  • Start date Start date
F

fhwa

ok using that controlsource =Me.1stTextBox + 4... I'm supposing
1stTextBox will equal Text16 because thats the name of the current
number box. however when I use that it asks me for a parameter for
Me?? I've never used Me before how do I get rid of the parameter part?
 
fhwa said:
ok using that controlsource =Me.1stTextBox + 4... I'm supposing
1stTextBox will equal Text16 because thats the name of the current
number box. however when I use that it asks me for a parameter for
Me?? I've never used Me before how do I get rid of the parameter part?


Me is only valid in a VBA class module.

Just get rid of Me. in the ControlSource expression.
 
Back
Top