There is a borderless form. There is also a picture box. I would like that when the user double clicks the button, it will maximize the form. I don't want to use me.windowstate = vbmaximized because it created a lot of problems. I want to manualy maximize the form using:
So far so good. But what about restoring the form to its normal sizes? I've tried a lot of things, but none worked.
Thanks.
Code:
me.top = 0
me.left = 0
me.width = screen.width
me.height = screen.height
Thanks.