9.0
124
Close Instruction
Syntax
Close [[#]StreamNum][, ...]
Group
File
Description
Close StreamNums.
Parameter Description
StreamNum Streams 1 through 255 are private to each macro. Streams 256 through 511 are
shared by all macros. If this is omitted then all open streams for the current
macro/module are closed.
See Also: Open, Reset.
Example
Sub Main
' read the first line of XXX and print it
Open
"XXX" For Input As #1
Line
Input #1,L$
Debug
.Print L$
Close #1
End
Sub
ComboBox Dialog Item Definition
Syntax
ComboBox X, Y, DX, DY, StrArray$( ), .Field$[, Options]
Group
User Dialog
Description
Define a combobox item. Combo boxes combine the functionality of an edit box and a list box.
Parameter Description
X This number value is the distance from the left ed
g
e of the dialo
g
box. It is measured
in 1/8ths of the average character width for the dialog's font.
Y This number value is the distance from the to
p
ed
g
e of the dialo
g
box. It is measured
in 1/12ths of the character height for the dialog's font.
DX This number value is the width. It is measured in 1/8ths of the average character
width for the dialog's font.
DY This number value is the hei
g
ht. It is measured in 1/12ths of the character hei
g
ht fo
r
the dialog's font.










