Text Viewer ActiveX Control

FindNext 

 

Continues a search the text.

Public Function FindNext(
     ByVal text As String
) as Bool

 

 Parameter
text - the string of the text

Return Value
true - successful
false - failed

Example

   

VB.NET Syntax
 If Not Me.AxTextReaderAx1.FindNext("your text") Then
MessageBox.Show("No text found")
End If


   

Visual Basic Syntax
 If Not TextReaderAx1.FindNext("your text") Then
MsgBox("No text found")
End If