I'm using c# and AxAcroPdf. I can load and view the Pdfs with no problem at all, but a bar keeps showing on the right hand side if I view the same Pdf more than once. I have placed the control on my form, I am not creating it programmatically.
My code is:
PreviewAcroPDF.LoadFile(FileName);
PreviewAcroPDF.setView("Fit");
PreviewAcroPDF.setShowToolbar(false);
PreviewAcroPDF.setLayoutMode("SinglePage");
PreviewAcroPDF.setPageMode("none");
PreviewAcroPDF.Show();
I am able to use ctrl H to manually change it but I do not want the end user to have to do this!
A screenshot of the bar I'm asking about:
Thank you in advance!
Robert
I was able to resolve this myself but could not find this post.
The solution was to go into adobe reader and change my preferences to not show the tool bar. It was nothing to be solved via programming, at lease that I could find.