Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Exception handling

Status
Not open for further replies.

xGE

Technical User
Nov 30, 2000
8
US
[Borland Standard C++ Builder 3.0 (build 3.70)]

I am having a very dificult time getting this platform to handle exceptions, as I understand its usage as determined from standard text books on the subject.

There seem to be a lot of menu boxes that need to be checked, and often the "HELP" is not very clear as to the ramifications of selecting various options.
 
Its not that difficult to handle exceptions in Borland C++ Builder. One method is to overload the VCL exception handler by creating your own;

//----------------------------------------------------------
void __fastcall TForm::AppException(TObject *Sender, Exception *E)
{
//* Go crazy on your exception handling :)
}
//----------------------------------------------------------

Have fun!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top