Input Data

Z

zyus

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

Klatuu

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
 
Z

zyus

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