userform size

A

art

Hello:

I want to make a userform width smaller then 93. Is it possible? I tried a
few way but will not let me. Any help?

Thanks
 
R

royUK

Set the width with the Initialize event


Code
-------------------
Option Explicit


Private Sub UserForm_Initialize()
Me.Width = 90
End Su
-------------------

--
royU

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com
 
A

art

It does not help. try it you'll see that after 93 it will not get less than
that. Is there any way to have the userform smaller then 93 width?

Thanks.
 
Top