Hi!
I wanted to append image in the following string. how can I
regards
jng
I wanted to append image in the following string. how can I
B4X:
Dim sb As StringBuilder
sb.Initialize
sb.Append("<html><body>").Append(CRLF)
sb.Append("<table><tr>").Append(CRLF)
sb.Append("<caption>").Append(Title).Append("</caption>").Append(CRLF)
-----> Here I wanted to append Image
sb.Append("</tr>").Append(CRLF)
sb.Append(rowdata)
sb.Append("</table></body></html>")
Return sb.ToString
regards
jng