RE: My VB WebBrowser
The resizing part is simple. You use the subroutine
Private Sub Form_Resize()
End Sub
When the form is resized the control gets bigger or smaller. Also at the top of the Subroutine add On Error Resume Next This will tell the application that if there is an error skip to the next line.
|