no resize

  • Thread starter Thread starter magmo
  • Start date Start date
M

magmo

Hi


I want to preven the user from resize my application, how can I do
that?


Regards


Magnus
 
magmo said:
Hi


I want to preven the user from resize my application, how can I do
that?

If you are referring to resizing a form, have you tried setting its
BorderStyle property to "Fixed Single" ?
 
Steve said:
If you are referring to resizing a form, have you tried setting its
BorderStyle property to "Fixed Single" ?

Please ignore my reply.

I thought I was in a different NG.
 
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
 
* "Cor Ligthert said:
Did you already look what this can do for you?

Me.FormBorderStyle = FormBorderStyle.FixedDialog

That's for dialogs, for the main form, use 'FixedSingle'.
 
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
 
Back
Top