Input Data

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

Guest

I have field name [REF_NO] and i want new data to start with "PP1" followed
by number keyed in by user. Any suggestion on how to put it in form to make
it easy for data entry.
 
Make the Default Value property of the text box "PP1". Then in the Got Focus
event of the text box set the Selstart property to 3.
Me.MyTextbox.Selstart = 3
 
TQ very much.....

Klatuu said:
Make the Default Value property of the text box "PP1". Then in the Got Focus
event of the text box set the Selstart property to 3.
Me.MyTextbox.Selstart = 3

zyus said:
I have field name [REF_NO] and i want new data to start with "PP1" followed
by number keyed in by user. Any suggestion on how to put it in form to make
it easy for data entry.
 
Back
Top