Add files via upload
This commit is contained in:
parent
64c6352265
commit
35131ba393
90 changed files with 1738 additions and 0 deletions
12
Examples/Dialogues/alert.bas
Normal file
12
Examples/Dialogues/alert.bas
Normal file
|
@ -0,0 +1,12 @@
|
|||
SUB MAIN
|
||||
DIM R AS INTEGER
|
||||
R = ALERT("OK Dialog", "OK Dialog Message which cannot be cancelled", "OK", "", "", FALSE)
|
||||
PRINT R
|
||||
R = ALERT("OK Dialog", "OK Dialog Message which can be cancelled", "OK", "", "", TRUE)
|
||||
PRINT R
|
||||
R = ALERT("Yes/No Dialog", "Yes/No Dialog Message", "Yes", "", "No", FALSE)
|
||||
PRINT R
|
||||
R = ALERT("Yes/Maybe/No Dialog", "Yes/Maybe/No Dialog Message", "Yes", "Maybe", "No", FALSE)
|
||||
PRINT R
|
||||
PRINT "*** Finished ***"
|
||||
END SUB
|
Loading…
Add table
Add a link
Reference in a new issue