C cnuhima Registered User. Local time Yesterday, 18:42 Joined Jun 19, 2008 Messages 72 Jun 19, 2008 #1 Hi guys, i have a small doubt.i want to open the form in the dialog mode.Can some body pls tell me how to do that.. thank u
Hi guys, i have a small doubt.i want to open the form in the dialog mode.Can some body pls tell me how to do that.. thank u
boblarson Smeghead Local time Yesterday, 18:42 Joined Jan 12, 2001 Messages 32,040 Jun 19, 2008 #2 DoCmd.OpenForm "FormNameHere", acNormal, , , , acDialog
C cnuhima Registered User. Local time Yesterday, 18:42 Joined Jun 19, 2008 Messages 72 Jun 19, 2008 #3 Thank u very much.But the form which i want to open in dialog form is the startup form in my application.. and if i write the above code in the form load function..its not working.. can u pls suggest me other ways..
Thank u very much.But the form which i want to open in dialog form is the startup form in my application.. and if i write the above code in the form load function..its not working.. can u pls suggest me other ways..
boblarson Smeghead Local time Yesterday, 18:42 Joined Jan 12, 2001 Messages 32,040 Jun 19, 2008 #4 Then, do not set the form in the startup options as the startup form. Create a macro and name it Autoexec. Set the Action to OpenForm and in the arguments you can select Dialog.
Then, do not set the form in the startup options as the startup form. Create a macro and name it Autoexec. Set the Action to OpenForm and in the arguments you can select Dialog.
C cnuhima Registered User. Local time Yesterday, 18:42 Joined Jun 19, 2008 Messages 72 Jun 19, 2008 #5 yup..i got it..by using restore docmd.restore Thank u ver much
C cnuhima Registered User. Local time Yesterday, 18:42 Joined Jun 19, 2008 Messages 72 Jun 19, 2008 #6 Thank u very much