resize win form

hi!

i want to forbid resize win form.

i tried the 'locked' properties, but it works only in environment desktop. when i run the application, the win form isn't, actually, locked.

how can i do this

i'm using visual c++ .net 2003.

thanks


Answer this question

resize win form

  • Ahmad Pirani

    hi,

    set the formborder properrty of you form to



    this->FormBorderStyle = System::Windows::Forms::FormBorderStyle::FixedDialog;


     


  • resize win form