Hallo,
in der Projektdatei wird folgender Text erzeugt:
Code:
WINAPI WinMain(HINSTANCE, HINSTANCE, LPSTR, int)
{
try
{
Application->Initialize();
SetApplicationMainFormOnTaskBar(Application, true);
Application->CreateForm(__classid(TfrmABC), &frmABC);
Application->Run();
}
catch (
Exception &
exception)
{
Application->ShowException(&
exception);
}
catch (...)
{
try
{
throw
Exception("");
}
catch (
Exception &
exception)
{
Application->ShowException(&
exception);
}
}
return 0;
}
//---------------------------------------------------------------------------
Ich bin dabei über die Zeile catch (...) gestolpert.
Was bedeuten die 3 Punkte
.