Microsoft
Software
Hardware
Network
Question : popup modal form
Hi EE,
a) Want to display a popup modal form that waits for user to type in signon and password.
b) Am superimposing the modal form on top of a "main menu" form.
c) The main form seems to (incorrectly for my taste) be the active form....
would like the modal form to be active with the focus set to the first field which is the
sign on id.
d) below is a screen shot
e) code snippet:
main form's open event:
--------------------------
--
If Len(pg_strSignOnId) = 0 Then
DoCmd.OpenForm ("FRM_LogIn")
End If
modal form's open event:
--------------------------
---
Private Sub Form_Open(Cancel As Integer)
Me.txtSignOn.SetFocus
Me.SetFocus <---- this idea does not seem to activate the modal form
End Sub
Your ideas are appreciated, tx, sandra
Answer : popup modal form
Try this:
DoCmd.OpenForm ("FRM_LogIn"),,,,,acDialog
mx
Random Solutions
VSTO Question(s)
Copy/Paste and sum total in excel
Import Monthly data from vendor with items sales qty that changes
Font in Cobo Box shrinks when I select from it
Escape while loop, then re-run while loop
Exchange 2007 cannot receive external email
Exactly what does Compact and Repair do?
Delete all asp.net users with applicationId = xx
Using Radio buttons across multiple columns in GridView
Creating Query in MS Access 2003