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 >
Wrap
Text File
|
1994-01-23
|
530b
|
25 lines
// Using Borland's BiVbx10.dll VBX Controls support
#include "FiveWin.ch"
//----------------------------------------------------------------------------//
function Main()
local oDlg, oControl
SET 3DLOOK ON
DEFINE DIALOG oDlg RESOURCE "Test" VBX
REDEFINE VBX oControl ID 1001 OF oDlg
REDEFINE BUTTON ID 2 OF oDlg ;
ACTION MsgInfo( GetClassName( oControl:hWnd ) )
ACTIVATE DIALOG oDlg
return
//----------------------------------------------------------------------------//