quote:Originally posted by Dempsey To do the resizing, do what Matty said, code:Private Sub Form_Resize() webBrowser1.width = screen.width - 100 webBrowser1.left = 50 end sub It wouldn't be screen.width - 100 it would be Me.Width - 120 (Me being the Form)
code:Private Sub Form_Resize() webBrowser1.width = screen.width - 100 webBrowser1.left = 50 end sub