Why make thigs so hard with something like
Code:
txtName1.Text = "6" & """" & " Torte"
It is all one string, it is all literal. Why concatenate?
Code:
txtName1.Text = "6"" Torte"
VB interprets every set of double quotes (by set, I mean two in a row) as a single double-quote in the resultant string.