InsertLines Syntax

S

Stephen Newman

I want to add a variable to an inserted line, but I can't seem to get
the syntax right.

I have for instance:

With TempForm.CodeModule
X = .CountOfLines
Dim y

for y = 1 to 10
.InsertLines X + y, "MsgBox ""This is message "" & y"
next y

End With

The code is inserted into the module, but this is the result for each
MsgBox:

MsgBox "This is message " & y


I just can't seem to get the variable to be part of the code.

Any help will be appreciated.
 
S

Stephen Newman

On Mon, 7 Jul 2008 20:34:24 -0700, "Tim Zych"

It never occurred to me that everything on the line beyond the comma
would be inserted. I threw a lot of "Expected End Of Statement" errors
trying to keep everything within the quotes. Thank you.
 

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