HTMLView problem

BlitzMax Forums/BlitzMax Programming/HTMLView problem

ozak(Posted 2005) [#1]
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? :)


skidracer(Posted 2005) [#2]
I think the htmlview needs a fully qualified path, try htmlviewgo(AppDir+"/Docs/Index.html")


ozak(Posted 2005) [#3]
Ahh yes. Thanks a lot! :)