Search found 190 matches: handler

Return to advanced search

Re: FWErrorsys()

Lastly, If we do not like to use FWH's error handling and like to have our own error handler Then at the beginning of the application, execute ErrorBlock( { |e| MyErrorHandler( e ) } ) and have our own error handling module like "errsysmy.prg" ...
by nageswaragunupudi
Thu Apr 04, 2024 3:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWErrorsys()
Replies: 8
Views: 1849

Error Usando LoadLib32 o LoadLib - Retorno Puntero

... 1.3.1 build 20240324 - Bcc770 (32) He encontrado errores usando las DLL que funcionan en otra versión. El problema es que al cargar las DLL el handler retorna un Puntero , esto provoca que al llamar a las funciones internas de las DLL estas arrojen error. He probado con los samples que vienen ...
by GUSPRE
Mon Apr 01, 2024 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
Replies: 3
Views: 708

Error System no longer works.

... Application Internal Error - E:\Datafile\Ihss32\ihss32.exe Terminated at: 2024-02-26 14:12:18 Unrecoverable error 9003: Too many recursive error handler calls Called from STR(0) Called from ERRORDIALOG(151) in .\source\function\ERRSYSW.PRG Called from (b)ERRORSYS(23) in .\source\function\ERRSYSW.PRG ...
by byron.hopp
Mon Feb 26, 2024 10:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error System no longer works.
Replies: 1
Views: 121

Re: SAPI : change Voice

Harbour function __axRegisterHandler() register an events handler.

meanwhile the speak of a text there are events but they don't arrive. No idea why.

We have low level debugged the code and it is correct but somehow the events are not arriving
by Antonio Linares
Thu Feb 08, 2024 3:01 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SAPI : change Voice
Replies: 69
Views: 3778

Re: Class THash

Porting Class THash to C code: This is a good example of how to implement ERROR HANDLER for a Class from C code function Main()   local o := THash()      ? o:ClassName   o:first = "one"   ? o:first   o:second = "two"   ? o:secondreturn ...
by Antonio Linares
Sat Oct 28, 2023 12:43 pm
 
Forum: Utilities / Utilidades
Topic: Class THash
Replies: 10
Views: 1514

Re: hb_cdxPageSeekKey how to intercept this error

Dear Marco,

try to reindex

You can always use a modified error handler:

SetErrorhandler( { | oError | ... } )
by Antonio Linares
Wed Oct 18, 2023 4:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hb_cdxPageSeekKey how to intercept this error
Replies: 18
Views: 843

Re: Mr. Rao, more about xBrowse

XBrowse is not that simple class. Well all this is handled in the Error Handler. There is no DATA nEditTypes in XBrowse, so this message goes to error handler. There it checks if there is any data of a Column class with that name without trailing "s" ...
by nageswaragunupudi
Wed Aug 23, 2023 7:26 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao, more about xBrowse
Replies: 11
Views: 590

Re: simulate unknown Function of UDF in IndexKey()

Przemek solution using the Harbour error handler: FUNCTION Main()   LOCAL cFuncName   cFuncName := "SOME_FUNC"   UDF_DEFFUN( cFuncName, @MY_FUNC() )          // ...
by Antonio Linares
Sun May 14, 2023 7:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: simulate unknown Function of UDF in IndexKey()
Replies: 9
Views: 437

create pdf

... code oPrn:say( ... ) in my print.prg But if I code oPrn:saytext( ... ) my program crashes with Unrecoverable error 9003: Too many recursive error handler calls Here a snippet from METHOD GenHaruPDF( cFile, lPreview ) of CLASS TPrinter 1905:   for each aCall in ::aCallLog1906:      oPdf:oPrn   ...
by Detlef
Sat May 13, 2023 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: create pdf
Replies: 14
Views: 967

Re: Utilizar 2 dbcombo

...        ITEMS {'Sub-Option 1', 'Sub-Option 2', 'Sub-Option 3'}      END COMBOBOX   END WINDOW   ACTIVATE WINDOW Form_1   // Bind a handler to the first combobox to update the options in the second combobox   COMBO_1:Change := {|| UpdateCombo2()}   PROCEDURE UpdateCombo2()  ...
by Jimmy
Fri Apr 21, 2023 11:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Utilizar 2 dbcombo
Replies: 3
Views: 283

Calling a function from a function

I upload approximately the following HTML text to the Webview. How to call the myfunc() function using the oWebview:Eval() method ? (DG - external handler) <!DOCTYPE html><html>    <head>    </head>    <body>       <script>  ...
by Natter
Wed Feb 08, 2023 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Calling a function from a function
Replies: 2
Views: 230

Re: WebView on a non-modal window

It is just an event loop handler, not needed as FWH uses its own
by Antonio Linares
Mon Dec 12, 2022 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView on a non-modal window
Replies: 3
Views: 342

Re: Display thumbnails of pdfs

... What Windows Explorer displays in the Preview Pane are NOT thumbnails, but Preview of the file. For this purpose, Windows uses "IPreview Handler" and that is exactly what our program in development is using wherever possible.
by nageswaragunupudi
Sun Oct 16, 2022 8:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Display thumbnails of pdfs
Replies: 33
Views: 2351

window class

Hi,

How to find out the name of the window class by its handler ?
by Natter
Thu Aug 11, 2022 11:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: window class
Replies: 2
Views: 265

Re: How to call Events from OLE/COM objects

... Developer Guide.pdf Fingerprint Sample Capture 1. *Create an instance of a DPFPCapture object (VB page36, C++ page78). 2. *Implement an event handler for DPFPCaptureEvents event notifications (VB page38, C++ page81). i "guess" when run SDK Setup it will "register" dpicacnt.dll ...
by Jimmy
Sat Apr 23, 2022 5:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to call Events from OLE/COM objects
Replies: 14
Views: 1000
Next

Return to advanced search