home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
PROGRAMM
/
BUILDER.ZIP
/
MSTYLE1.BLD
< prev
next >
Wrap
Text File
|
1992-11-17
|
1KB
|
42 lines
' MSTYLE1.BLD
'
' Changing the look and feel of a menu.
'
' To use it, enter this at the DOS command line:
'
' MSTYLE1
'
' Menu item text is black and background color of items is white.
' Hotkey text is white on a black background.
Menu Style Black, Cyan, Yellow, Cyan, 15, 4, Black, Cyan, 1,0,2,1
' | | | | | | | |
' | | | | | | | Box background
' | | | | | | Box text
' | | | | | Highlight background
' | | | | Highlight text
' | | | Hotkey background
' | | Hotkey text
' | Item background
' Item text
' The 1, 0, 2, 1 means:
' | | | |
' | | | 1=Use shadow, 0=No shadow
' | | 2=double box style, 1=single box
' | 1=Use first key, 0=& required
' 1=Immediate trigger, 0=wait for {Enter}
'
While Not Canceled
cls black on blue
DropDown "" @ 10, 30
Item "Stat&us"
say @ 24, 30 "Program status: <reverse>Test mode"
GetKey
Item "Directory &listing"
RowCol 10, 1
run Dir *.txt
Item "&Quit"
exit 0
end
End