Run a program

  • Thread starter Thread starter Johan
  • Start date Start date
J

Johan

Hi I am new user of this.

How do I run a program, and if it is give an error message I should be
pressed Enter.

Can someone give me this code an explain how to run it?

thanks!!!
 
Hi,

This looks like your other post:

On Error GoTo ErrorHandler1
....
"your code
....

Exit Sub
ErrorHandler1:
' do something here
End Sub

Or you can use
On Error Resume Next
which just ignores most errors and lets the code continue without displaying
an error message.

Again, it would be nice to see the code that is triggering and error.

If any of this is helpful, please click the Yes button.
 

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

Back
Top