i dont understand what the difference of the start and gettin buttons are?
but if the start skips the second form then do somthing like this:
ok, basically, what you need to do is make the first form look how you want it. then make the other form look how you want it...
then for the gettinbutton.onclick thing... use somthing like this:
SCAR Code:
procedure buttonclick(sender: TObject);
begin
frmDesign.Caption:= frmDesign.Caption + '.';
frmDesign.ModalResult:= mrOk;
clicked:= True
end;
then in the main loop use somthing like this:
SCAR Code:
begin
form1;
if clicked then
begin
form2;
end;
end.
this will not work just like this, but it is basically how you need to do it