dimensions of a Outlook form

  • Thread starter Thread starter Petr
  • Start date Start date
P

Petr

Hello,
can someone explain me, how can I specified with VB code the dimensions of a
Outlook form?
(similarly as ??? Item.Width = 450; Item.Height = 700)


Thanks in Advance!
petr
 
An item is a data record. It has no height or width. The user interface is
the Inspector window in which the item appears, hence:

Set objInsp = Item.GetInspector
objInsp.Width = 450
objInsp.Height = 700
 

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

Back
Top