|
-
Jul 1st, 2008, 09:46 AM
#1
Thread Starter
Member
Sizable Web Browser
Hello. I got a simple question:
How to make the WebBrowser1 border style to be sizable (just like the form)?
Thank you.
-
Jul 1st, 2008, 10:08 AM
#2
Re: Sizable Web Browser
Put this on your form
Code:
Private Sub Form_Resize()
WebBrowser1.Height = Me.Height
WebBrowser1.Width = Me.Width
End Sub
-
Jul 1st, 2008, 12:14 PM
#3
Thread Starter
Member
Re: Sizable Web Browser
Oops lol I think I didn't explain it well.
What I need is to make it able to choose the size I want (width, height, top and left) with my mouse, like the in the default form border style setting.
-
Jul 1st, 2008, 12:17 PM
#4
Re: Sizable Web Browser
Do you mean like dragging it around?
If a post has been helpful please rate it. 
If your question has been answered, pull down the tread tools and mark it as resolved.
-
Jul 1st, 2008, 01:05 PM
#5
Thread Starter
Member
-
Jul 1st, 2008, 01:24 PM
#6
Re: Sizable Web Browser
Well, the problem with that is the webbrowser control has no mouse events, so I don't know how you are going to resize using an item for which it has no programable events.
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
|