Error Reporting Engine v1.0

Please post all your completed software applications in here. This is for full software which you have created and wish to release and share with everyone.
3 posts Page 1 of 1
Contributors
User avatar
Scottie1972
Codenstuff Elite
Codenstuff Elite
Posts: 953
Joined: Thu Jan 14, 2010 5:48 am

Error Reporting Engine v1.0
Scottie1972
ok people since i am getting back into writing programs again sometimes i find myself with PM's about an error or exception and the sender does NOT give me any information on the error or the exception message.

this is very much a pain when it comes to helping the client's with there problem.
so i decided to create an Error Reporting Library just for this.

it is very easy to use.
where you have a
Code: Select all
Try
   'your running code here
Catch ex as Exception
   'normal MsgBox(ex.ToString)

   'you dont not use the normal MessageBox unless you just want to.

   'here you place the ErrorReport
   'see the HowToUse.txt to see how to use it    

End Try

IMPORTANT!!!!
if you do not do the below database this will not work.
Database Name : error_reports
Database Table: reports
DB Table Columns: id , app_name , err_date , err_msg

or Import this .SQL file into the "error_reports" database.
reports.zip
oh BTW, this requires you to have a running server with PHP installed and running.

Included in the ZIPFILE is the HowToUse.txt, ErrorReport.php, and the ErrorReport.dll for your project.
ErrorReportingEnginev1.0.zip

here is a an example app to read the database.
ErrorReportReaderv1.0.zip
You do not have the required permissions to view the files attached to this post.
Last edited by Scottie1972 on Sun Dec 16, 2012 2:06 am, edited 1 time in total.
Image
User avatar
Shim
VIP - Donator
VIP - Donator
Posts: 882
Joined: Wed Dec 14, 2011 5:02 am

Re: Error Reporting Engine v1.0
Shim
sounds interesting !! just downloaded , i will use it in the future :)
Find my programs on Softpedia
User avatar
Scottie1972
Codenstuff Elite
Codenstuff Elite
Posts: 953
Joined: Thu Jan 14, 2010 5:48 am

Re: Error Reporting Engine v1.0
Scottie1972
found a error in the php script fixed it and also created a example app to read the reported errors.
Image
3 posts Page 1 of 1
Return to “Full Software”