Thread: Quotation Marks
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
kosecki kosecki is offline
external usenet poster
 
Posts: 1
Default Quotation Marks

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