Quick question, how do you assign a String characters that contain a "
For example I want a string to actually contain this "anything" the word anything and the quotes ""
Printable View
Quick question, how do you assign a String characters that contain a "
For example I want a string to actually contain this "anything" the word anything and the quotes ""
try this
dim msg
msg = InputBox("Type Stuff Here!")
Text8.Text = Chr$(34) & msg & Chr$(34)
hunter
Hi there,
u can use this code to add a " to a string
msg = """" & "Hello" & """"