J
John W. Vinson
By the way, I am using "MsgBox ssql" for a break -- what command can I use
that will output a string that I can copy and paste?
Set a breakpoint in the code by clicking the mouse in the vertical grey bar to
the left of the code window, next to an executable statement. When you run the
code, execution will stop at the breakpoint. You can use the Debug menu
options or their Fkey shortcuts to step through the code line by line, or run
to the current position of the cursor, skip over function calls etc. - it's
essential for debugging!
You can display the value of ssql in the Immediate Window (type Ctrl-G if it's
not visible) by typing
?ssql
in the window, and can copy and paste it.