home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 16 / CD_ASCQ_16_0994.iso / news / 4611 / fw16d.ins / SAMPLES / TESTBVBX.PRG < prev    next >
Text File  |  1994-01-23  |  530b  |  25 lines

  1. // Using Borland's BiVbx10.dll VBX Controls support
  2.  
  3. #include "FiveWin.ch"
  4.  
  5. //----------------------------------------------------------------------------//
  6.  
  7. function Main()
  8.  
  9.    local oDlg, oControl
  10.  
  11.    SET 3DLOOK ON
  12.  
  13.    DEFINE DIALOG oDlg RESOURCE "Test" VBX
  14.  
  15.    REDEFINE VBX oControl ID 1001 OF oDlg
  16.  
  17.    REDEFINE BUTTON ID 2 OF oDlg ;
  18.       ACTION MsgInfo( GetClassName( oControl:hWnd ) )
  19.  
  20.    ACTIVATE DIALOG oDlg
  21.  
  22. return
  23.  
  24. //----------------------------------------------------------------------------//
  25.