Hi Every One,
I have developed an Application which is not adjusting in other windows like 14'' or lower resolution of desktop then what is the procedure to set the windows size??
Thanks & regards.
Prasunjeet Soni
This way
C#
private void Form1_Load(object sender, EventArgs e) { this.WindowState = FormWindowState.Maximized; }
VB.Net
Private Sub Form1_Load(sender As Object, e As EventArgs) Me.WindowState = FormWindowState.Maximized End Sub
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.