9.0
226
Debug.Print Replace$("abcabc","b","B",9) '""
End
Sub
Reset Instruction
Syntax
Reset
Group
File
Description
Close all open streams for the current macro/module.
See Also: Close
, Open.
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$
Reset
End
Sub
Resume Instruction
Syntax
Resume label
-or-
Resume Next
Group
Error Handling
Description
Form 1: Resume execution at label.
Form 2: Resume execution at the next statement.
Once an error has occurred, the error handler can use Resume to continue execution. The error handler must use
Resume or Exit
at the end.
Note: This instruction clears the Err
and sets Error$ to null.










