Hi all,

i am having 3 controls.
Button
AxAcroPDF1
Richtextbox

I select text from pdf file present in AxAcroPDF1 from mouse click, what ever i select immidiately it show be shown on the text on the Richtextbox
Code:
 Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click

        Dim dlg As OpenFileDialog = New OpenFileDialog()
        ' set file filter of dialog
        dlg.Filter = "pdf files (*.pdf) |*.pdf;"
        dlg.ShowDialog()
        If dlg.FileName <> "" Then
            AxAcroPDF1.src = dlg.FileName

        End If
    End Sub
Will be waiting for the reply.

Kind Regards
Seema