Hi.

How to extract name without quotation marks.

E.g
I need to replace

Print #1, TextBox1.Value
Print #1, TextBox2.Value
Print #1, TextBox3.Value

to something like that

For x = 1 To 6
text = "TextBox" & x & ".Value"
Print #1, text <-- text must be without quotation

P.Kosinski