Hi, how to write the full image path that contains spaces in html
if there is a space in the path the full path is truncated, tried
Thanks
B4X:
If File.exists(txtImageFolder,txtID&"-1.jpg")Then
Image1= txtImageFolder&"\"&txtID &"-1.jpg"
Report=Report &"<tr><td> </td><td><img border='1' height='80' src="& Image1 &"></td></tr>"
End If
B4X:
Image1= "'" & txtImageFolder &"\"&txtID &"-1.jpg" & "'"
Thanks