Einzelnen Beitrag anzeigen

Niko

Registriert seit: 23. Jun 2003
416 Beiträge
 
Delphi 2006 Professional
 
#2

Re: [C++-Builder] Mehrer Formulare in einem Projekt

  Alt 31. Mai 2006, 19:16
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]
}
  Mit Zitat antworten Zitat