KeyCode

  • Thread starter Thread starter craigiharper
  • Start date Start date
C

craigiharper

I have been following the instructions about creating a
password protected form or report (article 209871) and i
am struggling with point 20, it says type in an amount in
the immediate window to determine the corresponding key
code for a corresponding string. What is the Immediate
window, i don't get any window opening up and i am
struggling to understand what other window it could mean.
Thanks in advance for your help.
 
Type ^g (ctrl-and-g) to display the immediate window; also called the debug
window. Then type:

? asc("x")

and press return, to display the ascii code for "x" (for example).

HTH,
TC
 
Back
Top