dimensions of a Outlook form

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
 
S

Sue Mosher [MVP-Outlook]

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
 
Top