If i wish to make an ativex control, but I wish the control to act like say the winsock control. So when it is added to a form, it displays the little icon, and is not seen by a user during runtime. How do I do this?
Printable View
If i wish to make an ativex control, but I wish the control to act like say the winsock control. So when it is added to a form, it displays the little icon, and is not seen by a user during runtime. How do I do this?
Set the InvisibleAtRuntime property of the control to "True".
thanks
how do you make it so, no matter how big the developer makes the control on the form, it shrinks down to original size, like the winsock control does.
How about this?
Private Sub UserControl_Resize()
UserControl.Width = 1284 'Or whatever width you want
UserControl.Height = 420
End Sub
Anything else I can help you out with?