| Author: akku 05 Aug 2008 | Member Level: Silver | Rating: Points: 3 |
Try this
' Visual Basic Form1.Size = New System.Drawing.Size(100, 100)
// C# Form1.Size = new System.Drawing.Size(100, 100);
// C++ Form1->Size = System::Drawing::Size(100, 100);
|
| Author: Ganesh Kumar 06 Aug 2008 | Member Level: Bronze | Rating: Points: 3 |
Hi Sankar, Yes. I found the answer. I changed the "FormBorderStyle" property to "FixedSingle". It wont allow the user to resize the form at runtime.
Regards, Ganesh.
|