I can open a pdf file from my website like this:
Then Ios will open the pdf outside my app.
I would like to do the same if I already have downloadet the pdf.
I try something like this, but nothing happens
Can this be done ?
Anyone have a idea ?
Mogens
B4X:
Dim Path = "http://www.lpastech.dk/el-pas.com/E-Cruise/" & sBrand & "/Installation%20Manuals/" & sPath As String
App.OpenURL(Path)
Then Ios will open the pdf outside my app.
I would like to do the same if I already have downloadet the pdf.
I try something like this, but nothing happens
B4X:
Dim Path = "file://" & File.Combine(File.DirDocuments, "leaflet_dk.pdf")
App.OpenURL(Path)
Can this be done ?
Anyone have a idea ?
Mogens