view PDF on Web ?

jnbarban

Member
Licensed User
Longtime User
I have a PDF data base on my Web serveur and i want to see My PDF on my application just by click on a button. ( 1 button --> 1 PDF URL).

Do you know how i can do that ?
 

jnbarban

Member
Licensed User
Longtime User
Ok, when i try this :

B4X:
Dim i As Intent 'Requires a reference to the Phone library
    i.Initialize(i.ACTION_VIEW, "http://thvnt06/Mobiv/TestPDF.pdf")
    i.SetType("application/pdf")
    i.WrapAsIntentChooser("Choose PDF Viewer")
    StartActivity(i)

i got this message :

No Application can execute this action

Any Idea ?
 
Upvote 0

junaidahmed

Well-Known Member
Licensed User
Longtime User
I am also Facing Same Problem.Can you pls advise which Third Party software that allow to open Remote pdf file.Moreover I am using Third Party software like Kingsoft,Office Polaris,Document Togo Which support support Remote file from Dropbox,Box,Google Doc etc,but I would like to know which software that allow to open remote file of my own server through Static IP as below.

Dim i As Intent
i.Initialize(i.ACTION_VIEW, "http://202.88.74.123/TestPDF.pdf")
i.SetType("application/pdf")
i.WrapAsIntentChooser("Choose PDF Viewer")
StartActivity(i)
 
Upvote 0
Top