We have purchased the Spire.PDFViewer and are getting nowhere.
I am trying to perform a search using the PDFViewer (control PdfDocumentViewer).
To do this, I have dragged the PdfDocumentViewer control, a text box and two buttons onto the form. Clicking on Button1 should highlight the text in the PDF AND jump to the page where it was found.
If you click on Button2, the program should jump to the next page with the text found.
vb.net with visual studio 2022, Spire.PDFViewer (7.12)
Private Sub cmdSuche_Click(sender As Object, e As EventArgs) Handles cmdSuche.Click
PdfDocumentViewer1.SearchText(txtSuche.Text, Color.FromArgb(80, Color.Yellow), true)
End Sub
How could this be implemented?