hello,
i want to use panel's "show" and "hide" properties in a loop.
for example;
public sub panel_goster(x as integer,y as integer)
dim i as integer
panelx.show
do until (i = y)
if i <> x then
paneli.hide
end if
i=i+1
loop
end sub
but this sub didn't work.
How can i say panelx.show (x=1,2,3,...) in a loop structure..
Thanks..
i want to use panel's "show" and "hide" properties in a loop.
for example;
public sub panel_goster(x as integer,y as integer)
dim i as integer
panelx.show
do until (i = y)
if i <> x then
paneli.hide
end if
i=i+1
loop
end sub
but this sub didn't work.
How can i say panelx.show (x=1,2,3,...) in a loop structure..
Thanks..