Error in :SetAmbientBGColor

This forum is for eXpress++ general support.
Message
Author
User avatar
rdonnay
Site Admin
Posts: 4722
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: Error in :SetAmbientBGColor

#11 Post by rdonnay »

The error is caused by an event that is meaningless, so I just told Xbase++ to not handle that event:

Code: Select all

DCREAD GUI  TITLE 'DCHTMLVIEWER in Tab test'  ;//MODAL EVAL {|o|SetAppWindow(o)}   ;
   OPTIONS GetOptions HANDLER myHandler


RETURN nil

STATIC FUNCTION myHandler( nEvent, mp1, mp2, oXbp, oDlg, GetList )

IF nEvent = 1048627
  RETURN DCGUI_IGNORE
ENDIF

RETURN DCGUI_NONE
The eXpress train is coming - and it has more cars.

Post Reply