9.0
217
0 FileName is the name of the bitma
p
file. If the file does not exist then "
(
missin
g
p
icture
)
" is
displayed.
3 The clipboard's bitmap is displayed. Not supported.
+16 Instead of displaying "(missing picture)" a run-time error occurs.
See Also: Begin Dialog, Dim As UserDialog.
Example
Sub Main
Begin Dialog
UserDialog 200,120
Picture 10,10,180,75,"SAMPLE.BMP",0
OKButton
80,90,40,20
End
Dialog
Dim
dlg As UserDialog
Dialog
dlg ' show dialog (wait for ok)
End
Sub
Precedence definition
When several operators are used in an expression, each operator is evaluated in a predetermined order. Operators
are evaluated in this order:
^ (power)
- (negate)
* (multiply), / (divide)
\ (integer divide)
Mod (integer remainder)
+ (add), - (difference)
& (string concatenate)
= (equal), <> (not equal), < (less than) > (greater than), <= (less than or equal to), >= (greater than or equal
to), Like
, (string similarity) Is (object equivalence)
Not (logical bitwise invert)
And (logical bitwise and)
Or (logical or bitwise or)
Xor (logical or bitwise exclusive-or)
Eqv (logical or bitwise equivalence)
Imp (logical or bitwise implication)
Operators shown on the same line are evaluated from left to right.
Print Instruction
Syntax










