appie21 Active Member Licensed User Longtime User Jul 30, 2018 #1 Hello I try to load a local html file But i can't get the right code B4X: File.WriteString(File.DirApp, "table.html", TXT) WebView1.LoadUrl((File.DirApp,"table.html")) i have also try WebView1.LoadUrl("file://" & File.Combine(File.DirApp, "table.html")) But with any luck
Hello I try to load a local html file But i can't get the right code B4X: File.WriteString(File.DirApp, "table.html", TXT) WebView1.LoadUrl((File.DirApp,"table.html")) i have also try WebView1.LoadUrl("file://" & File.Combine(File.DirApp, "table.html")) But with any luck
stevel05 Expert Licensed User Longtime User Jul 30, 2018 #2 Try WebView1.LoadUrl(File.GetUri(File.DirApp, "table.html")) Last edited: Jul 30, 2018 Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Jul 31, 2018 #3 Or: B4X: WebView.LoadHtml(TXT) Upvote 0