home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / FIRST.CPP < prev    next >
Encoding:
C/C++ Source or Header  |  1996-08-05  |  653 b   |  21 lines

  1. //---------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4.  
  5. #include "First.h"
  6. #include "second.h"
  7. //---------------------------------------------------------------------
  8. #pragma resource "*.dfm"
  9. TForm1 *Form1;
  10. //---------------------------------------------------------------------
  11. __fastcall TForm1::TForm1(TComponent *Owner)
  12.   : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------
  16. void __fastcall TForm1::Button1Click(TObject* /*Sender*/)
  17. {
  18.     Form2->ShowModal();
  19. }
  20. //----------------------------------------------------------------------------
  21.