Adding records to a database

seanog2001

Registered User.
Local time
Today, 17:31
Joined
Jun 26, 2006
Messages
67
hi,

when i add a record to my db via a form i want the focus to be on the first text box cant rember how to do it but i know its pretty simple, do i build event in the add command button, im using .setfocus/settext doesnt seem to be working any help?
 
In the Form's Current event type:
Code:
controlname.setfocus
Where controlname is the name of the control you want to have the focus.
 
The most common way of controlling this is probably setting the tab order (View/Tab Order).
 

Users who are viewing this thread

Back
Top Bottom