I need to make a program that has the capasity to add object permanantly to the form (unless they choose to delete it). I tried this but it does not work:
And they would need the ability to move and resize them too. How would I do this?
C#:
Control r=new RichTextBox();
r.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
r.Location = new System.Drawing.Point(80, 162);
r.Name = "richTextBox3";
r.Size = new System.Drawing.Size(520, 56);
r.TabIndex = 3;
r.Text = "richTextBox3";
And they would need the ability to move and resize them too. How would I do this?
Last edited by a moderator: