Ok how can I change Form properties? For example how can I change Form1 width or height? I try Form1.Height =600 in the Form1_Load event but it gives me an error... I can't access any of the Form1 properties not only width and height
@Kayne921 Actually, I should've been a little more specific. If you want to change Form1's properties during run-time (within code), you would enter the follow in the Form1 Load Event Handler:
How would you send this to another computer for someone too open. I wanna send it to a friend saying happy birthday, His birthday is coming up. Plz get back to me.
Ok how can I change Form properties? For example how can I change Form1 width or height? I try Form1.Height =600 in the Form1_Load event but it gives me an error... I can't access any of the Form1 properties not only width and height
Kayne921 5 months ago
@Kayne921
In design mode, simply right-click the form and click "Properties."
SolutionsForYou 5 months ago
@Kayne921 Actually, I should've been a little more specific. If you want to change Form1's properties during run-time (within code), you would enter the follow in the Form1 Load Event Handler:
this.Height = 600;
SolutionsForYou 4 months ago
How would you send this to another computer for someone too open. I wanna send it to a friend saying happy birthday, His birthday is coming up. Plz get back to me.
MrCeniga191 1 year ago
everytime i click on the box it just goes to
private void button1_Click(object sender, EventArgs e) { //add item }
kaosgnp 1 year ago
@kaosgnp Try adding // before you put MessageBox
MrCeniga191 1 year ago
thank you very much for this
paintballinwa 1 year ago
@paintballinwa
No problem!
SolutionsForYou 1 year ago