Hello, I'm using Visual Studio 2003. I have a simple windows form that I am working with in the Form Designer in Visual Studio. Whenever I change the size of the form in the Designer, then click save, rebuild and run, the changes do not take effect. The form still has the old size. In the InitializeComponent() method, the size of the form is changed. Does anyone know why this may be happening? Thanks in advance.
R
RanvA
@RanvA
Posts
-
Resizing in designer wont take effect when running. -
Creating, Showing, Returning values with Windows Forms.Excellent, thanks, I appreciate it.
-
Creating, Showing, Returning values with Windows Forms.Hello, I was hoping someone could direct me to a tutorial on the web that would describe the best practices to create and show a windows form from a parent form. Right now, I'm doing this: (Assume that I am in some method in the main form and I want to create and show Form2)
Form2 form2 = new Form2();
form2.Show();I'd also like to know how to return values from a child form. I've been searching the web but can't find anything specific. Any help would be appreciated.