M magmo Jun 23, 2004 #1 Hi I want to preven the user from resize my application, how can I do that? Regards Magnus
S Steve Garman Jun 23, 2004 #2 magmo said: Hi I want to preven the user from resize my application, how can I do that? Click to expand... If you are referring to resizing a form, have you tried setting its BorderStyle property to "Fixed Single" ?
magmo said: Hi I want to preven the user from resize my application, how can I do that? Click to expand... If you are referring to resizing a form, have you tried setting its BorderStyle property to "Fixed Single" ?
S Steve Garman Jun 23, 2004 #3 Steve said: If you are referring to resizing a form, have you tried setting its BorderStyle property to "Fixed Single" ? Click to expand... Please ignore my reply. I thought I was in a different NG.
Steve said: If you are referring to resizing a form, have you tried setting its BorderStyle property to "Fixed Single" ? Click to expand... Please ignore my reply. I thought I was in a different NG.
C Cor Ligthert Jun 23, 2004 #4 Hi Magmo, Did you already look what this can do for you? Me.FormBorderStyle = FormBorderStyle.FixedDialog I hope this helps? Cor "> I want to preven the user from resize my application, how can I do that? Regards Magnus Click to expand...
Hi Magmo, Did you already look what this can do for you? Me.FormBorderStyle = FormBorderStyle.FixedDialog I hope this helps? Cor "> I want to preven the user from resize my application, how can I do that? Regards Magnus Click to expand...
H Herfried K. Wagner [MVP] Jun 23, 2004 #5 * "Cor Ligthert said: Did you already look what this can do for you? Me.FormBorderStyle = FormBorderStyle.FixedDialog Click to expand... That's for dialogs, for the main form, use 'FixedSingle'.
* "Cor Ligthert said: Did you already look what this can do for you? Me.FormBorderStyle = FormBorderStyle.FixedDialog Click to expand... That's for dialogs, for the main form, use 'FixedSingle'.
M magmo Jun 25, 2004 #6 Hi I solved it by setting the max and min size to the size of the form, that worked too. Thanks for your input! /Magnus
Hi I solved it by setting the max and min size to the size of the form, that worked too. Thanks for your input! /Magnus