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

# Content
1 //---------------------------------------------------------------------------
2
3 #include <clx.h>
4 #pragma hdrstop
5 USEFORM("MainForm.cpp", frmMain);
6 //---------------------------------------------------------------------------
7 int main(void)
8 {
9 try
10 {
11 Application->Initialize();
12 Application->CreateForm(__classid(TfrmMain), &frmMain);
13 Application->Run();
14 }
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 //---------------------------------------------------------------------------