Hi,
How can look for only the numbers in a RTB control?
I know for instance how to search for a string by using: :
Private Sub Command1_Click( )
Dim FoundPos As Integer
Dim FoundLine As Integer
' Find the text specified in the TextBox control.
FoundPos = RichTextBox1.Fi nd(Text1.Text, , , rtfWholeWord)
etc...
End sub
Thanks!
--
Cengiz Ulku
cengizu@bluewin .ch
How can look for only the numbers in a RTB control?
I know for instance how to search for a string by using: :
Private Sub Command1_Click( )
Dim FoundPos As Integer
Dim FoundLine As Integer
' Find the text specified in the TextBox control.
FoundPos = RichTextBox1.Fi nd(Text1.Text, , , rtfWholeWord)
etc...
End sub
Thanks!
--
Cengiz Ulku
cengizu@bluewin .ch
Comment