HTMLView problem

BlitzMax Forums/BlitzMax Programming/HTMLView problem

I have a subdir called docs in my application directory, but HtmlViewGo("./Docs/Index.html") fails.

The same with HtmlViewGo("file://./Docs/Index.html")
It also fails.

So the question goes. How do I launch "./Docs/Index.html" in a Html view? :)

I think the htmlview needs a fully qualified path, try htmlviewgo(AppDir+"/Docs/Index.html")

Ahh yes. Thanks a lot! :)