PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Print "
Print "
Iniciado por HECTOR, 02,sep. 2016 12:20 - 1 respuesta
Miembro registrado
26 mensajes
Publicado el 02,septiembre 2016 - 12:20
Hi I want to print an HTML document with my WindevMobile 21 (Android) app but I have a problem with the caracter ", I tried to write """" but it prints "".

An example:

fSaveText("myHtml.html","<td align=""""right"""" colspan=""""7"""">")


Rresults <td align=""right"" colspan=""7""> instead of <td align="right" colspan="7"
Miembro registrado
26 mensajes
Publicado el 02,septiembre 2016 - 14:03
It works changing """" by ""

fSaveText("myHtml.html","<td align=""right"" colspan=""7"">")