how do I change popup form properties from VBA

raychoy2k

Registered User.
Local time
Today, 08:21
Joined
Feb 24, 2003
Messages
29
Hello,

I am opening form2 from form1 using a command button on_click() procedure. How do I temporarily change the properties of form2 to make it a popup form from the form1 class on_click class module?

Please help. Thanks
 
why do you want to change it?
 
because I would like it to look like a popup form temporarily. Then when I close it, I will change it back.
 
Try open it as a dialog window like this.

Docmd.OpenForm "Form2",,,,, acDialog
 

Users who are viewing this thread

Back
Top Bottom