Parameter Problem

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?
 
M

Marshall Barton

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.
 
Top