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 >
Text File  |  1994-06-04  |  732b  |  30 lines

  1. // Warning: Under construction. Not available yet!
  2.  
  3. #include "FiveWin.ch"
  4.  
  5. #define WM_VBXFIREEVENT  864       // 0x0360
  6.  
  7. //----------------------------------------------------------------------------//
  8.  
  9. CLASS TVbxDlg FROM TDialog
  10.  
  11.    METHOD HandleEvent( nMsg, nWParam, nLParam )
  12.  
  13. ENDCLASS
  14.  
  15. //----------------------------------------------------------------------------//
  16.  
  17. METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TVbxDlg
  18.  
  19.    do case
  20.       case nMsg == WM_INITDIALOG
  21.            // VbxInitDialog( ::hWnd, ::hResources, ::cResName )
  22.            return .t.
  23.  
  24.       case nMsg == WM_VBXFIREEVENT
  25.    endcase
  26.  
  27. return nil
  28.  
  29. //----------------------------------------------------------------------------//
  30.