vote up 1 vote down star

i have a form that needs to be maximized in vb.net. i dont want the user to be able to change its size or move it around.

flag

Why does this window need to be maximized? I run a display at 1920x1200 at home (24" widescreen LCD) and I really doubt you'd be filling my entire display with content. – R. Bemrose Jul 13 at 14:18

5 Answers

vote up 0 vote down check

To prevent users from resizing, set the FormBoderStyle to Fixed3D or FixedDialog from properties window or from code

frmYour.BorderStyle = System.WinForms.FormBorderStyle.Fixed3D

And set the WindowState property to Maximized, set the MaximizeBox and MinimizeBox properties to false.

To prevent the user from moving around, override WndProc

Protected Overrides Sub WndProc(ByRef m As Message)
        Const WM_NCLBUTTONDOWN As Integer = 161
        Const WM_SYSCOMMAND As Integer = 274
        Const HTCAPTION As Integer = 2
        Const SC_MOVE As Integer = 61456

        If (m.Msg = WM_SYSCOMMAND) And (m.WParam.ToInt32() = SC_MOVE) Then
            Return
        End If

        If (m.Msg = WM_NCLBUTTONDOWN) And (m.WParam.ToInt32() = HTCAPTION) Then
            Return
        End If

        MyBase.WndProc(m)
    End Sub
link|flag
I havn't completed. See the code above. – amazedsaint Jul 13 at 13:06
wow what is the significance of all those integers? – IIIIIIIIIIllllIlIlIlIlllllllII Jul 13 at 13:09
constants for passing to windows api - each integer represents a Windows Message command and corresponding parameter – amazedsaint Jul 13 at 13:27
whoever marked this down please mark it back up – IIIIIIIIIIllllIlIlIlIlllllllII Jul 15 at 10:50
vote up 0 vote down

Set the min and max size of form to same numbers. Do not show min and max buttons.

link|flag
vote up 1 vote down
//Set fixed border
yourForm.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D

//Set the state of your form to maximized   	
yourForm.WindowState = FormWindowState.Maximized

//Disable the minimize box and the maximize box
yourForm.MinimizeBox = False
yourForm.MaximizeBox = False
link|flag
vote up 1 vote down

Set the window start style as maximized. Then, hide the minimize and maximize buttons.

link|flag
vote up 1 vote down

You can remove the UI to control this with:

frmYour.MinimizeBox = False
frmYour.MaximizeBox = False
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.