I made a program with the app wizard and there's something wrong! In the form resize subs I added a code that will resize my browser with the form. And it's not working! It only works once when the form loads!
Printable View
I made a program with the app wizard and there's something wrong! In the form resize subs I added a code that will resize my browser with the form. And it's not working! It only works once when the form loads!
Where did you put the code, in the form load event, or in the form resize event?
Form Resize what do you think! I'm not dumb!!!
hahaha, well somebody had to ask. j/k, copy and paste your code into the resize event of a form on a clean standard exe project and see if it works. or post your code so we can see it. It should work fine.
It works now. Because before I was using the following code (UNDER FORM RESIZE!!!)
Code:'This code uses the width and hight of the form when the
'form was loaded, so when you resize it uses the old w/h.
BR.Width = frmMain.Width - 120
BR.Height = frmMain.Height - 950
'New code which uses the current w/h!
BR.Width = Me.Width - 120
BR.Height = Me.Height - 950
Roger That (nt)