Search found 30 matches

by Jacobh
Thu Sep 22, 2011 8:46 pm
Forum: madExcept
Topic: Catching exceptions in a Service
Replies: 1
Views: 2498

Catching exceptions in a Service

Hi, I've got a Windows Service application without access to the desktop, and I'm having trouble getting madExcept to catch any exceptions in this service. I've read your earlier answers to questions like this, and I've made sure that I've configured madExcept to not use any GUI. Nevertheless the &q...
by Jacobh
Wed Nov 24, 2010 10:33 pm
Forum: madExcept
Topic: Sending bugreport as a SMTP mail client
Replies: 1
Views: 2269

Sending bugreport as a SMTP mail client

Hi. I'm switching from sending bug reports via HTTP to do it via SMTP (mail client option). It works, my only problem is, how do I set the sender of the bug report mail? Now it looks like this when I receive the bug report mail: madExcept [my@mail.dk] I'd like it to look like this XXX [my@mail.dk] w...
by Jacobh
Thu May 08, 2008 9:36 am
Forum: madExcept
Topic: Programmatically set if screen shot should be attached
Replies: 1
Views: 3025

Programmatically set if screen shot should be attached

Hi

Is there a way to programmatically set, if the screen shot should be attached to the bug report?

Is it also possible to decide from code, if only to capture our application?

Thanks
Jacob
by Jacobh
Sun Mar 23, 2008 3:19 pm
Forum: madExcept
Topic: HTTP upload ASP problem solved
Replies: 0
Views: 9470

HTTP upload ASP problem solved

Hi - For a while uploading bug reports via HTTP to an ASP script has been failing intermittently. I've now learned, that by default the ISS has an upper limit of 200K on uploads. Screen shots are easily bigger. To change the limit, see http://msdn2.microsoft.com/en-us/library/ms525409.aspx Cheers Ja...
by Jacobh
Thu Sep 06, 2007 6:19 pm
Forum: madExcept
Topic: Case of exe name
Replies: 2
Views: 3821

Thx, thats just what I need :D
by Jacobh
Sun Aug 26, 2007 9:54 am
Forum: madExcept
Topic: Case of exe name
Replies: 2
Views: 3821

Case of exe name

Hi, as I have reported earlier, I have a small problem with the madExcept Viewer. For some reason, the case of the name of my program varies in bug reports: executable : FINANS.EXE executable : Finans.exe executable : finans.exe This means, that the reports are treated by the viewer as if they come ...
by Jacobh
Sun Jun 17, 2007 10:45 am
Forum: madExcept
Topic: Dear@madshi
Replies: 1
Views: 3244

Dear@madshi

Dear madshi, your email server seems to be down: Subject: Sugestion for madExcept Viewer Sent: 15-06-2007 12:29 dear@madshi.net den 17-06-2007 12:33 Could not deliver the message in the time limit specified. Please retry or contact your administrator. <mailserver.skoledata.dk #4.4.7> I have a minor ...
by Jacobh
Fri May 25, 2007 6:15 pm
Forum: madExcept
Topic: Is operator funny?
Replies: 6
Views: 8128

Is operator funnny on Win2k?

Hi, this strange thing now happened again. I've got this handler: type Warning = class(Exception); ... procedure OnException(const AExceptIntf: IMEException; var AHandled: Boolean); begin if Assigned(AExceptIntf.ExceptObject) then if AExceptIntf.ExceptObject is Warning then begin DsaDialog(AExceptIn...
by Jacobh
Fri Mar 23, 2007 7:37 pm
Forum: madExcept
Topic: Adding extra information to bug report
Replies: 1
Views: 3491

Adding extra information to bug report

Hi! I'd like to add the BDE settings to the bug report. Settings like MEMSIZE and SHAREDMEMSIZE, etc, ie. information that is present at program start-up. Is there a way to add this information to all bug reports being generated? Just like I do MESettings.AdditionalFields['recipient'] := 'xxx@xxx.dk...
by Jacobh
Tue Jan 23, 2007 2:53 pm
Forum: madExcept
Topic: Is operator funny?
Replies: 6
Views: 8128

I thought that was clear for everyone! It would be a stupid idea to only allow one exception class per filter, wouldn't it?
I'm happy to see that you aren't stupid afterall :D
by Jacobh
Tue Jan 23, 2007 11:39 am
Forum: madExcept
Topic: Is operator funny?
Replies: 6
Views: 8128

Hi So you're asking "ExceptClass" now and still you got the bug report with a version of your software which asks "ExceptClass" instead of "ExceptObject"? I don't use the ExceptClass anymore, only ExceptObject. And "main thread" was the first thread listed in ...
by Jacobh
Tue Jan 23, 2007 10:53 am
Forum: madExcept
Topic: Is operator funny?
Replies: 6
Views: 8128

Is operator funny?

Hi madshi! I register an exception handler like this type Warning = class(Exception); procedure OnException(const AExceptIntf: IMEException; var AHandled: Boolean); begin if Assigned(AExceptIntf.ExceptObject) then if AExceptIntf.ExceptObject is Warning then begin MessageDlg(AExceptIntf.ExceptMessage...
by Jacobh
Wed Aug 02, 2006 5:55 pm
Forum: madExcept
Topic: Forcing the user to send a bug report
Replies: 12
Views: 12392

One last thing. :D I'd like to be able to switch this on and off with a conditional define: {$IFDEF DEBUG} ... {$ELSE} ... {$ENDIF} so that in debug mode, a normal madshi exception box is displayed whenever an exception happens, while not in debug mode, the send assistant is immediately displayed, s...
by Jacobh
Wed Aug 02, 2006 4:57 pm
Forum: madExcept
Topic: Forcing the user to send a bug report
Replies: 12
Views: 12392

It works now :crazy: This is what I did: procedure AssisExceptionHandler(const exceptIntf: IMEException; var handled: boolean); var assis : INVAssistant; begin assis := exceptIntf.GetAssistant('SendAssistant'); if assis.ShowModal = nvmOk then begin exceptIntf.MailBody := madErrorDetails; exceptIntf....
by Jacobh
Wed Aug 02, 2006 2:47 pm
Forum: madExcept
Topic: Forcing the user to send a bug report
Replies: 12
Views: 12392

Hm... Assigning to exceptIntf.MailBody or MESettings.AdditionalFields['body'] seems to have no effect. I try procedure AssisExceptionHandler(const exceptIntf: IMEException; var handled: boolean); var assis : INVAssistant; begin assis := exceptIntf.GetAssistant('SendAssistant'); if assis.ShowModal = ...