Hi everyone ....

I'm using a TabCotrol in my project , and I want to load as many tabs pages as I

need with a PDF control within each tab page

so I used this code :

Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click

Dim NewAdobePage As New AxAcroPDFLib.AxAcroPDF
Dim tb As New TabPage

TabControl.TabPages.Add(tb)
tb.Controls.Add(NewAdobePage)

End Sub

and now I want to use OpenFileDialog control to load PDF files into any of the

already opened AxAcroPDF controls , How ???

Thanks in advance