Search found 7 matches

by MasterDi
Mon Jan 11, 2021 8:26 am
Forum: madExcept
Topic: Crash madExcept_.bpl
Replies: 1
Views: 3008

Crash madExcept_.bpl

Hi, Madshi

When I close the app, an error occurs:
Problem Event Name: APPCRASH
Fault Module Name: madExcept_.bpl_unloaded
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 5c00272f
How to understand why?
by MasterDi
Thu Dec 17, 2020 1:11 pm
Forum: madExcept
Topic: Exception in ImportBugReport
Replies: 0
Views: 52796

Exception in ImportBugReport

Hi, Madshi var br: IMEException; begin br:= ImportBugReport(fileBugReport); // fileBugReport = exceptIntf.GetBugReport(true) br.Show; // <- error When calling .Show, i get an error: callstack crc : will be calculated soon exception number : 2 exception class : Unknown exception message : Unknown. th...
by MasterDi
Thu Dec 17, 2020 12:35 pm
Forum: madExcept
Topic: INVAssistant.ShowModal does not return nvmSkip
Replies: 8
Views: 6282

Re: INVAssistant.ShowModal does not return nvmSkip

Understood. It worked. Thanks procedure Tfrm.Exception(const exceptIntf: IMEException; var handled: Boolean); begin if then exceptIntf.ShowSetting:= ssDetailBox else begin exceptIntf.ShowSetting:= ssFullBox; case assistant.Forms[0].ShowModal(0) of nvmCancel: exceptIntf.Show;
by MasterDi
Thu Dec 17, 2020 12:24 pm
Forum: madExcept
Topic: INVAssistant.ShowModal does not return nvmSkip
Replies: 8
Views: 6282

Re: INVAssistant.ShowModal does not return nvmSkip

.Show method shows a standard message (a form that corresponds to ssdetailbox)
But not a form with details (where the tabs are general, call stack ...)

is .ShowBugReport() responsible for this form?
But this method does not work.
by MasterDi
Thu Dec 17, 2020 10:57 am
Forum: madExcept
Topic: INVAssistant.ShowModal does not return nvmSkip
Replies: 8
Views: 6282

Re: INVAssistant.ShowModal does not return nvmSkip

If used ShowSetting = ssDetailBox, the details button (DetailsBtn) opens a form for viewing the log. How do I open the same form, but in manual mode? procedure Tfrm.Exception(const exceptIntf: IMEException; var handled: Boolean); begin case assistant.Forms[0].ShowModal(0) nvmCancel: OpenDetailsForm ...
by MasterDi
Thu Dec 17, 2020 10:29 am
Forum: madExcept
Topic: INVAssistant.ShowModal does not return nvmSkip
Replies: 8
Views: 6282

Re: INVAssistant.ShowModal does not return nvmSkip

Thank you, replaced by

Code: Select all

mr:= assistant.Forms[0].ShowModal(0);
and got nmvSkip.

But another question arose.
How can i display a window with error details in the same event (TMadExceptionHandler.OnException)?
exceptIntf.ShowBugReport(0);
by MasterDi
Thu Dec 17, 2020 9:33 am
Forum: madExcept
Topic: INVAssistant.ShowModal does not return nvmSkip
Replies: 8
Views: 6282

INVAssistant.ShowModal does not return nvmSkip

Hi, Madshi procedure Tfrm.mhException(const exceptIntf: IMEException; var handled: Boolean); var assistant: INVAssistant; mm: INVEdit; mr: TNVModalResult; begin ... assistant:= exceptIntf.GetAssistant(exceptIntf.ShowAssistant); assistant.Forms[0].Message:= exceptIntf.ExceptMsg; mm:= assistant.Forms[...