home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
IDE
/
PROGRAMS
/
DLG.PRG
next >
Wrap
Text File
|
1994-05-21
|
728b
|
31 lines
#include "FiveWin.ch"
static oWnd
//----------------------------------------------------------------------------//
function Main()
local oBrush
DEFINE BRUSH oBrush
DEFINE WINDOW oWnd TITLE "" ;
FROM 10, 15 TO 22, 65 ;
BRUSH oBrush
@ 203, 132 BUTTON "&Button" SIZE 90, 37 PIXEL OF oWnd ;
ACTION MsgInfo( "Not defined yet!" )
@ 203, 423 BUTTON "&Button" SIZE 90, 37 PIXEL OF oWnd ;
ACTION MsgInfo( "Not defined yet!" )
@ 161, 131 BUTTON "&Button" SIZE 90, 37 PIXEL OF oWnd ;
ACTION MsgInfo( "Not defined yet!" )
ACTIVATE WINDOW oWnd
return nil
//----------------------------------------------------------------------------//