C
Cas
Hi,
I create two textboxes and two labels.
My problem is that: i want to get them under each other instead of beside
each other.
My second problem is that i want to have more spaces between the label and
the textbox.
Is there a way to do that?
Thanks
Cas
Dim b As New Label
b.Text = "label" & Space(7) 'space doesn't work
form1.Controls.Add(b)
Dim a = New TextBox
form1.Controls.Add(a)
Dim bb As New Label
bb.Text = "label" & Space(7)
form1.Controls.Add(bb)
Dim aa = New TextBox
form1.Controls.Add(aa)
I create two textboxes and two labels.
My problem is that: i want to get them under each other instead of beside
each other.
My second problem is that i want to have more spaces between the label and
the textbox.
Is there a way to do that?
Thanks
Cas
Dim b As New Label
b.Text = "label" & Space(7) 'space doesn't work
form1.Controls.Add(b)
Dim a = New TextBox
form1.Controls.Add(a)
Dim bb As New Label
bb.Text = "label" & Space(7)
form1.Controls.Add(bb)
Dim aa = New TextBox
form1.Controls.Add(aa)