Help opening a form

BDawg04

Registered User.
Local time
Yesterday, 18:38
Joined
Jan 6, 2005
Messages
21
I have a form that opens as soon as the database is opened. There is an attachment showing the problem. The problem is that it opens in the middle of the form. The form is not maximized(not that it matters because it opens this way regardless). If I want to see the information at the top of the form I have to scroll up. How can I get the form to open at the top from the start(without having to scroll up)? I know this sounds wierd but I can't figure it out. I have played around with different properties and tried to save the form different ways and reopen it but nothing has worked. Any ideas???
 

Attachments

Hi BDawg04 ,
I'm not sure if this will work but on the "On Form Load" can you setfocus to one of you objects at the to of your form?
eg:
____________
Private Sub Form_Load()
Me.LastName.SetFocus
End Sub
__________

Colin
 
Thanks CEB!!!! That worked great. I figured there was something simple I could do. As usual I make everything harder than it has to be. I guess that's all part of learning from your mistakes. Thanks again.
 

Users who are viewing this thread

Back
Top Bottom