Completed
Last Updated: 28 May 2015 13:30 by ADMIN
ADMIN
Stefan
Created on: 01 May 2013 04:58
Category: PdfViewer
Type: Bug Report
3
FIX. RadPdfViewer - does not load a pdf on Form.Load
To reproduce:
- Load a pdf file at the constructor and try to load another pdf file on Form.Load => the result is that the second pdf is not loaded.
 public Form1()
        {
            InitializeComponent();
            radPdfViewer1.LoadDocument("..\\..\\pdfSample.pdf");

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            radPdfViewer1.LoadDocument("..\\..\\test.pdf");
        }

Workaround: unload the first loaded document prior loading the second one
0 comments