home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 16
/
CD_ASCQ_16_0994.iso
/
news
/
4611
/
fw16d.ins
/
IDE
/
DLG.PRG
next >
Wrap
Text File
|
1994-06-07
|
736b
|
32 lines
#include "FiveWin.ch"
static oWnd
//----------------------------------------------------------------------------//
function Main()
local oBrush
DEFINE BRUSH oBrush
DEFINE WINDOW oWnd TITLE "" ;
FROM 12, 17 TO 24, 68 ;
BRUSH oBrush
@ 47, 10 LISTBOX oLbx ITEMS { "One", "Two", "Three", "", "", "" } ;
SIZE 296, 133 PIXEL OF oWnd
@ 199, 450 BUTTON "&Button" SIZE 83, 35 PIXEL OF oWnd ;
ACTION MsgInfo( "Not defined yet!" )
@ 6, 78 GET oGet SIZE 227, 33 PIXEL OF oDlg
@ 5, 9 SAY "&Label" SIZE 64, 33 PIXEL OF oWnd
ACTIVATE WINDOW oWnd
return nil
//----------------------------------------------------------------------------//