Open Form size 1024 X 768

E

E.Zenker

Open Form size 1024 X 768

Hi

Can anyone tell me how to open a userfoem in size 1024 X 768
in the top left corner of the sreen

Thanks
E.Zenker
 
S

Sue Mosher [MVP-Outlook]

Try:

Function Item_Open()
Const olNormalWindow = 2
Set objInsp = Item.GetInspector()
With objInsp
.WindowState = olNormalWindow
.Top = 0
.Left = 0
.Height = 768
.Width = 1024
End With
End Function
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top