Hi,
nicht anders als in Delphi:
1. Datei|Neu|Formular aufrufen (Neues Formular heißt z.B. Form2 in Unit2)
2 Den Code des ersten Formulars wie folgt ergänzen:
Code:
#include <
vcl.h>
#pragma hdrstop
#include "Unit1.h"
[color=#ff0000]#include "Unit2.h"[/color]
//...
void __fastcall TForm1::Button1Click(TObject *Sender)
{
[color=#ff0000]Form2->ShowModal();[/color]
}