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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top