Questions tagged [axacropdf]

An object containing a set of methods that provide access to PDF browser controls. This is a creatable interface. This object makes it possible to load a file, move to various pages within the file, and specify various display and print options.

An object containing a set of methods that provide access to PDF browser controls. This is a creatable interface. This object makes it possible to load a file, move to various pages within the file, and specify various display and print options.

Adobe Acrobat live docs ( version 11 )

65 questions
2
votes
1 answer

hide toolbar of pdf in AxAcroPDF

Hi i am showing pdf document using C#. i just want to show pdf document without showing tool bar.please answer anyone.this is my code axAcroPDF1.setShowToolbar(false); …
Chinna
  • 59
  • 1
  • 1
  • 8
2
votes
3 answers

Disable Adobe Reader toolbar from my ActiveX

I am loading a PDF document in my ActiveX using AxAcroPDFLib and iTextSharp libraries. I want to disable the toolbar (that have Save, Print etc options) from the loaded PDF so that user cannot 'Save' the PDF from ActiveX. I have following…
rizzz86
  • 3,862
  • 8
  • 35
  • 52
2
votes
2 answers

AxAcroPdf when loaded, do something

I have a winform where i load a PDF to a AxAcroPDF. looks something like this Public sub LoadSelectedPDF() PDF_Reader.Loadfile(TXT_BrowsePDF.Text) 'PDF_Reader is my AxAcroPDF TXT_Title.Focus() End Sub Now, when i run this, I can see that…
gubbfett
  • 2,157
  • 6
  • 32
  • 54
2
votes
0 answers

The highlight controls of axAcroPDF are disabled

I am try to use axAcroPDF COM to display PDF file on my form , select text and highlight them. The PDF page can be rendered correctly. And I have noticed there are some buttons stay at right of the form , but they are all gray ,so I can not click…
Xu Peng
  • 21
  • 1
2
votes
3 answers

How can I get number of pages in a pdf file in AxAcroPdf?

I use AxAcroPdf to display PDF file with this code : AcroPdfViewer.src = FilePath; AcroPdfViewer.setPageMode("none"); AcroPdfViewer.setZoom(100); AcroPdfViewer.setShowToolbar(true); How can I get number of total pages of the PDF file in AxAcroPdf ?
Ali Ahmadi
  • 2,387
  • 4
  • 31
  • 48
1
vote
0 answers

AxAcroPDF won't open hyperlinks

This is my very first post here, so I would like to start with Thank You. I found a lot of answers here. I cant seem to open any link or hyperlink in pdf files with AxAcroPDF viewer? The Viewer is in a Windows Form and I use C#. example from…
Atti
  • 11
  • 2
1
vote
1 answer

Hide "Export PDF, Create PDF, etc" Pane and Keep It Hidden

This is such a small thing that's been such a pain to deal with. I'm expecting there's a simple answer that's simply evaded my searching, I just don't know what it is!! Purpose: The program is a fancy document viewer as part of a troubleshooting…
Mark K
  • 27
  • 5
1
vote
2 answers

axAcroPDF does not display PDF on windows XP

I have a C# windows forms application that displays the user a pdf. I use the axAcroPDF control like that: AxAcroPDFLib.AxAcroPDF pdfViewer = new AxAcroPDFLib.AxAcroPDF(); ... pdfViewer.loadFile(@"C:\a.pdf"); This works fine on my PC and on my…
nogola
  • 214
  • 4
  • 12
1
vote
0 answers

Embbed a PDF into a WPF WebBrowser and then print it

I am trying to create dinamically a WPF WebBrowser, load a PDF from a file in c:\temp\MyPdf.pdf and finally to print it in the default printer. I have used AcroPDFLib as below code shows: System.Windows.Controls.WebBrowser wbPdfWebViewer = new…
Willy
  • 9,848
  • 22
  • 141
  • 284
1
vote
1 answer

WPF Control Freeze after WindowsFormsHost trigger to view PDF

I'm having problem with my User Control freeze. It's happen when I'm triggering the WindowsFormsHost to preview the PDF File. The pdf file still running in the WindowsFormsHost where i can still scroll to view it. However, my other…
OreaSedap
  • 21
  • 7
1
vote
0 answers

Unable to open network PDF file from embedded link inside another PDF

I use a small program to open a main PDF file used by multiple employees. If open the given file on the Network (without using the program) and select the hyperlink inside the PDF, it will open correctly. However, when I run my program to open that…
Alex
  • 4,821
  • 16
  • 65
  • 106
1
vote
0 answers

Show a Label while AxAcroPDF is still rendering or loading a file

Something like this LoadingLabel.Visible = True Me.AxAcroPDF1.setShowToolbar(False) Me.AxAcroPDF1.LoadFile(MyFileToLoad) LoadingLabelVisible = False is not working, the LoadingLabelVisible = False is executed even when the file still is rendering…
fedeteka
  • 943
  • 1
  • 14
  • 33
1
vote
1 answer

Acrobat PDF viewer control takes time to dispose

This issue affects both my VB.NET and C# Winform applications. When closing Form containing Adobe PDF Viewer conreol, the Form takex some 10 seconds to close. I tracked the issue down to Dispose method. Normally, in C# all it takes it so steal focus…
ArtK
  • 1,157
  • 5
  • 17
  • 31
1
vote
3 answers

Form closing slow because of PDF viewer

We have a Winforms application that uses PDFViewer and AxAcroPDFlib. We previously had a problem where the form would hang when closing because the pdf control was having trouble closing. The solution, found here, was to assign focus to a different…
Terry
  • 1,889
  • 2
  • 12
  • 8
1
vote
0 answers

Embedding AxAcroPDF into my form causes it to load in the background randomly

I just wanted to use a simple PDF viewer for a company application. I decided on AxAcroPDF for this. It works well enough. The problem I can't seem to fix is that the form will sometimes, actually a majority of the time, load in the background. This…
Keith
  • 1,331
  • 2
  • 13
  • 18