Can ECHO OFF lasting longer?

M

Martin

I use the MACRO as follows:

firstly, ECHO OFF
Secondly, run a FORM
Thirdly, echo on

Yet, I found that,before the FORM is completely opened, the access ECHO ON
( showing the access itself that I don't want it to show)

Can ECHO OFF lasting longer?


Thank you
 
A

Allen Browne

If you turn Echo off in code rather than in a macro, it stays off until you
turn it back on again. It depends on what you are trying to do, but that
might solve the problem.

BTW, you may need to become familiar with how to get yourself out of a spot
here. If you turn Echo off in code and it stays off, you can turn it back on
again blindly like this:
1. Press Ctrl+G to open the Immediate window.

2. Press Ctrl+End to go to a new line.

3. Type:
DoCmd.Echo True
and press Enter.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top