ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/group/trunk/FAS/src/FAS.cpp
Revision: 88
Committed: Mon Aug 19 20:49:08 2002 UTC (21 years, 10 months ago) by tim
File size: 919 byte(s)
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 tim 67 //---------------------------------------------------------------------------
2    
3     #include <clx.h>
4     #pragma hdrstop
5 tim 88 USEFORM("MainForm.cpp", frmMain);
6     //---------------------------------------------------------------------------
7 tim 67 int main(void)
8     {
9     try
10     {
11     Application->Initialize();
12 tim 88 Application->CreateForm(__classid(TfrmMain), &frmMain);
13     Application->Run();
14 tim 67 }
15     catch (Exception &exception)
16     {
17     Application->ShowException(&exception);
18     }
19     catch(...)
20     {
21     try
22     {
23     throw Exception("");
24     }
25     catch(Exception &exception)
26     {
27     Application->ShowException(&exception);
28     }
29     }
30     return 0;
31     }
32     //---------------------------------------------------------------------------