2
I have the following way, to make the edits invisible.
edt_raster5.visible := false;
edt_raster6.visible := false;
edt_raster7.visible := false;
edt_raster8.visible := false;
edt_raster9.visible := false;
Is there a way to use a loop to make it easier? I know it’s very simple but I’m not getting it right....
for i := 1 to 9
edt_raster[i].visible := false;
I thought about it, but I didn’t want to make all the edits invisible, only the ones with a certain name.
– Guilherme Lima
I get it, so use the method that Voce posted, or you could scan all the components, get all the Edit, and check the name.
– Alisson Marqui
Yes, it worked, but I tried to do the same thing as the checkbox, he read the error....
– Guilherme Lima