WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
Application->CreateForm(__classid(TForm1), &Form1);
Application->Run();
在這個地方停上
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
catch (...)
{
try
{
throw Exception("");
}
catch (Exception &exception)
{
Application->ShowException(&exception);
}
}
return 0;
一開始運行就出現這種錯誤,提示project raised exception class elisterror with message
轉載請註明出處,本文鏈接:https://www.uj5u.com/houduan/104350.html
標籤:數據庫及相關技術
