;
; Shows the use of all the available commands.
;  Except that there are a few missing ...
;

;- Create the controls we require...
CreateWindow 400, 300, 253, 355, nWin, $10, "Just a little test"
CreateFrame 120, 3, 100, 60, fFrame, $0, "I'm not a nugget"
CreateButton   3, 3, 100, 50, cBut, $0, "arse"
CreateTextbox 3, 55, 100, 11, tBox, $0, "Hello World!"
CreateCheckbox 125, 70, 60, 17, cCheckbox, $0, "I agree."
CreateCombobox 125, 90, 100, cCombobox, $0, "First|Second|Third|Fourth"
CreateListbox 3, 80, 100, 100, lBox, $0, "1|2|3|4|Date$"
CreateLabel 3, 180, 100, 25, Label, $0, "A nice little Label ..."
;CreateImage 110, 3, 200, 400, Image, $0, "C:\Image.bmp"
CreateDrivelist 110, 135, 130, driveList, $0, "C:\"
CreateDirlist 110, 160, 130, 90, dirList, $0, "C:\"
CreateFilelist 110, 240, 130, 90, fileList, $0, "C:\"

;- Set necessary captions...
;SetWindowTitle "Test App..."
SetCaption cBut, "Date$"

;- Set the tooltip text for some controls...
;SetToolTip Image, "A nice picture innit?"
SetToolTip fFrame, "Yes you are!"
SetToolTip driveList, "A list of drives on your system..."
SetToolTip dirList, "A list of directories..."
SetToolTip fileList, "A list of files..."