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