I have a page the queries a db to create an html file that it loaded into a webview. So far it all works well except that the webview will not scroll and, as the html page can be varying lengths, I could do with solving this one.
This bit works as a static, fixed size page
wxSessionPlan.LoadHtml(ExecuteHtml(Starter.SQL1, Query, Null, 0, True))
and this bit works
File.writestring(File.DirRootExternal,"SessionPlan.html",sbHeader.ToString)
and, alternatively this bit works
ExecuteHtml(Starter.SQL1, Query, Null, 0, True)
but this does not work
wxSessionPlan.Loadurl("File.DirRootExternal/" & "SessionPlan.html")
it can't find the file which is in /storage/emulated/0 and does exist
Any help would be much appreciated as always
Thanks
Penfound