|
-
Jun 2nd, 2000, 12:33 AM
#1
Thread Starter
Hyperactive Member
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?
-
Jun 2nd, 2000, 12:51 AM
#2
Lively Member
Set the InvisibleAtRuntime property of the control to "True".
-
Jun 2nd, 2000, 12:51 AM
#3
Thread Starter
Hyperactive Member
-
Jun 2nd, 2000, 01:03 AM
#4
Thread Starter
Hyperactive Member
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.
-
Jun 2nd, 2000, 01:11 AM
#5
Lively Member
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|