home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
SOURCE
/
CLASSES
/
VBXDLG.PRG
< prev
next >
Wrap
Text File
|
1994-06-04
|
732b
|
30 lines
// Warning: Under construction. Not available yet!
#include "FiveWin.ch"
#define WM_VBXFIREEVENT 864 // 0x0360
//----------------------------------------------------------------------------//
CLASS TVbxDlg FROM TDialog
METHOD HandleEvent( nMsg, nWParam, nLParam )
ENDCLASS
//----------------------------------------------------------------------------//
METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TVbxDlg
do case
case nMsg == WM_INITDIALOG
// VbxInitDialog( ::hWnd, ::hResources, ::cResName )
return .t.
case nMsg == WM_VBXFIREEVENT
endcase
return nil
//----------------------------------------------------------------------------//