FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Unrecoverable error 9003
Posts: 1096
Joined: Fri Oct 28, 2005 02:27 AM
Unrecoverable error 9003
Posted: Mon Apr 11, 2011 07:24 AM
I modified testbtnb.prg in fwh\samples to refer to an undefined id 111 as follows,
Code (fw): Select all Collapse
#include "FiveWin.ch"

//----------------------------------------------------------------------------//

function Main()

   local oDlg

   SET _3DLOOK ON

   DEFINE DIALOG oDlg RESOURCE "Main" COLOR "N/B"

   REDEFINE BTNBMP ID 110 OF oDlg ;
      RESOURCE "Yes" NOBORDER ACTION oDlg:End()
      
   oDlg:aControls[ 1 ]:lTransparent = .t.   

   REDEFINE BTNBMP ID 120 OF oDlg ;
      RESOURCE "No"

   REDEFINE BTNBMP ID 130 OF oDlg ;
      RESOURCE "Cancel"

   redefine btnbmp id 111 of oDlg resource "cancel"
      
   ACTIVATE DIALOG oDlg CENTERED

return nil


With FWH10.5, I get the error message Unrecoverable error 9003: Too many recursive error handler calls instead of the expected Undefined Id. Can others confirm?

TIA
FWH 11.08/FWH 19.12

BCC5.82/BCC7.3

xHarbour/Harbour

Continue the discussion