size of msgbox

  • Thread starter Thread starter Lars Roland
  • Start date Start date
L

Lars Roland

Hi, I am coding an outlook addin, that at some point will display a
msgbox that can have diffrent size. Is there some way to ensure that this
messagebox newer fills out the screen - eg. an solution that if the
box fills more than 1/4 of the screen will add a scrollbar to it, instead
of making it bigger.

Can this be done somehow (or something that has the same effect) ???
 
Not with MsgBox. You can create your own form and display that and control
the size of that dialog using code in the form responding to the Form.Resize
event.
 
Back
Top