604
社区成员
发帖
与我相关
我的任务
分享 {
Application->Initialize();
Application->CreateForm(__classid(TfmConnection), &fmConnection);
Application->CreateForm(__classid(TfmMain), &fmMain);
Application->Run();
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}