Hi, I am a nemwbe to Delphi and I am trying out small programs to get acquainted.
Now I just wonder how you switch from Form1 to Form2.
I have this coded in Form1:
procedure TForm1.Button1Click(Sender: TObject);
begin
Form1.Close;
Form2.Show;
end;
Compiling is OK, but when I run the program...