having a ansistring = "
-
i need Tmp = "; but i get an error, is there a way of having Tmp = "
-
i need Tmp = "; but i get an error, is there a way of having Tmp = "
If I understood you right,
Tmp = "\"";
is what you're after. Joaquín M López Muñoz Telefónica, Investigación y Desarrollo -
If I understood you right,
Tmp = "\"";
is what you're after. Joaquín M López Muñoz Telefónica, Investigación y Desarrollothanks worked great but do you know what to do for a return? Tmp = " go on to a new line? "
-
thanks worked great but do you know what to do for a return? Tmp = " go on to a new line? "
\n
new line\t
horizontal tab\b
backspace\f
form feed\a
alert or bell\r
carriage return\v
vertical tab\\
backslash\'
single quote\"
double quote Joaquín M López Muñoz Telefónica, Investigación y Desarrollo