T
ton
Hi,
I'm adding several labels and linkbutton to a panel, without the style
attribute so these controls are next to each other.
I want to start on a new line for each 5 control, but I do not know how.
The source looks like: (it is just an example)
for i=1 to 10
if i=6 then
'how do i start on a new line ???
end if
lnk = new linkbutton
With lnk
teller = teller + 1
.ID = "filter" & teller & pnl.ID
.Text = b
.CommandArgument = 1
AddHandler .Click, AddressOf FilterLink
End With
pnl.Controls.Add(lnk)
next
Thanx
Ton
I'm adding several labels and linkbutton to a panel, without the style
attribute so these controls are next to each other.
I want to start on a new line for each 5 control, but I do not know how.
The source looks like: (it is just an example)
for i=1 to 10
if i=6 then
'how do i start on a new line ???
end if
lnk = new linkbutton
With lnk
teller = teller + 1
.ID = "filter" & teller & pnl.ID
.Text = b
.CommandArgument = 1
AddHandler .Click, AddressOf FilterLink
End With
pnl.Controls.Add(lnk)
next
Thanx
Ton