Hi,
I am using adobe reader to display pdf files.
I need to be able to pass a page number to the reader so that that page is displayed when the reader opens the pdf file.
Is this possible?
If so how do I code it?
I have to use a reader like Adobe reader as I need its functionality.
Kind Regards.
Tom
I am using adobe reader to display pdf files.
I need to be able to pass a page number to the reader so that that page is displayed when the reader opens the pdf file.
Is this possible?
If so how do I code it?
I have to use a reader like Adobe reader as I need its functionality.
B4X:
Dim i As Intent
i.Initialize(i.ACTION_VIEW, filename)
i.SetType("application/pdf")
StartActivity(i)
Kind Regards.
Tom