I just designed a windows forms application but when it ran on my friends smaller laptop; the form appeared too big or should i say one had to scroll from left to right or top to down to access various text boxes, buttons etc. I was looking at this SO answer, which showed the following code:
this.WindowState = FormWindowState.Maximized;
I presume this piece of code resides in the specific form constructor ? Would this code solve all my issues? I do not have a smaller laptop currently at my disposal for testing unless i start messing with my own screen resolution.