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
 
Back
Top