Compiling and running the FiveImg.prg (found in FWH\samples\graphics\formats) with xHarbour September 2008, the program crashes with the following error: Error BASE/1004 Class: 'NIL' has no exported method: NEW
Program extract:
static oWnd, oImage, oImageSm
//----------------------------------------------------------------------------//
function Main()
DEFINE WINDOW oWnd ;
MENU BuildMenu() ;
TITLE "Graphics formats support for FiveWin" ;
COLOR CLR_BLUE, RGB( 0, 128, 128 ) ;
@ 20, 12 VBX oImageSm ;
FILENAME "VDVBX.dll" OF oWnd SIZE 100, 100 PIXEL
@ 20, 130 VBX oImage ;
FILENAME "VDVBX.dll" OF oWnd SIZE 500, 380 PIXEL
ACTIVATE WINDOW oWnd MAXIMIZED
return nil
I'm missing something or what's wrong with the sample app ?
Thank you.