PC SOFT

GRUPOS DE DISCUSSÃO PROFISSIONAL
WINDEVWEBDEV e WINDEV Mobile

Inicio → WINDEV Mobile 2024 → WinDev Print " character
WinDev Print " character
Iniciado por DennisSSebasi STEPH, out., 31 2022 5:28 AM - 1 resposta
Membro registado
8 mensagems
Publicado em outubro, 31 2022 - 5:28 AM
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"""">")
Result <td align=""right"" colspan=""7""> instead of <td align="right" colspan="7">
Publicado em outubro, 31 2022 - 1:37 PM
Hi Dennis,

2 solutions

sHTML is string
sHTML = "<td align=" + Charact(34) + "right" + Charact(34) + " colspan=" + Charact(34) + "7" + + Charact(34) + ">"
sHTML = [
<td align="right" colspan="7">
]


Hope this helps,
MerijnW