delphi - set components visible property on a panel or form -
how grab components form or panel , set visible property false ?
/// /// loop components, idea solution ,,,, /// i:= 0 mypanel.componentslist begin /// mycomponent.visible := false; end;
use controls array purpose.
for example:
for := 0 panel1.controlcount - 1 panel1.controls[i].visible := false;
Comments
Post a Comment