PDA

View Full Version : Opening Access apps with VB


SteveH
05-08-02, 11:27
I am using VB 6.0. I am opening an Access 97 application and want the window to open maximized. Right now it doesn't. How can I accomplish this?

Thanks

Steve

rnealejr
05-08-02, 19:09
Do you want the access application to be maximized or just a report/table ... maximized within access ?

SteveH
05-10-02, 10:06
I want the window maximized. everything else is appearing as I want it to .

Thank you for the reply.

rnealejr
05-10-02, 10:32
If you want a window within access to be maximized use the docmd.maximize method.

If you want the access shell to be maximized you need to use the win32 api function setwindowplacement.

Good luck.