"to many line continuation"

  • Thread starter Thread starter an
  • Start date Start date
A

an

Hello!

To prevent the message:
"to many line continuation"

Is possible to change next:

If [A] = "XXX" Then
.Visible = False
[C].Visible = False
[D].Visible = False
[E].Visible = True
Else
End If

For something seemed with

If[A] = "XXX" Then
[A];;[C];[D].Visible = False And [E].Visible = True
Else
End If

Thanks in advance.
an
 
The message doesn't have anything to do with the code you show. It means you
have too many lines that end with " _" (without the quotes) to continue them
onto the next physical line on the screen.

Your proposed syntax, with the semicolons, is not allowed.
 

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