alyelgarhy
New member
i have make a code that when click on a button it add new control here the code
Dim c As New Button()
c.ID = "btnName"
c.Text = "hi"
c.Visible = True
form1.Controls.Add(c)
now i need to make session to can add more than one Control every time i click on the button any one can help?
Dim c As New Button()
c.ID = "btnName"
c.Text = "hi"
c.Visible = True
form1.Controls.Add(c)
now i need to make session to can add more than one Control every time i click on the button any one can help?