when i put
ElseIf txtbox.Text = """ Then
it gives me a message box saying
Compile error:
Expected: Then
i need to make a response for a textbox displaying the single character " is there some way to make it work? by using brackets or anything?
Printable View
when i put
ElseIf txtbox.Text = """ Then
it gives me a message box saying
Compile error:
Expected: Then
i need to make a response for a textbox displaying the single character " is there some way to make it work? by using brackets or anything?
try this:
it works...Code:
txtbox.Text = """"
"""" Works very well, but I find it confusing sometimes, for clarity, you can also use (it's the same thing): txtbox.Text = chr(34)
JeffB
agreed
txtbox.Text = chr(34) is the right way to doing all this.