Input Masks

snagrat

Registered User.
Local time
Today, 19:59
Joined
Apr 2, 2002
Messages
61
i am using input masks within a form, and everytime i click into the text boxes - the cursor appears wherever i click, i want the cursor to appear at the far left of the text box as usual - is there any VB code or a macro that i could run to achieve this.
Thanks very much
 
You need to put the following code in the "On Click" event;

Me.[fieldname].Selstart = 0
 
stupid me,

but,

what is the Me. supposed to be? The database name? The form name?
 
The Me stays, dont replace it. It referrs to the open form or report(instead of typing the real name of the form Access will assume you are referring to the current form). The only thing you replace is the field name.
 

Users who are viewing this thread

Back
Top Bottom