DelphiAaron
Programmer
say you have 10 buttons called button1, button2 ext..
then you want to change the caption on all the buttons
like this
var a:integer;
begin
a:=1;
repeat
button(a).caption:='hello';
until a=10;
end;
how would you go about it ?
Aaron Taylor
John Mutch Electronics
then you want to change the caption on all the buttons
like this
var a:integer;
begin
a:=1;
repeat
button(a).caption:='hello';
until a=10;
end;
how would you go about it ?
Aaron Taylor
John Mutch Electronics