I need some kind of code to check if the first line in a richtextbox contains numbers or not.
Something like this:
If Richtextbot1.Lines(0) contains Numbers Then
Goto startbot
Else
End If
Here is an example of my richtextbox lines:
2245 queen st west, ON, M6R2W7
12 RRw Rd, ON
ON, M2N4E3
If the first line contains 4 or more numbers, it will use it. After each loop it will delete line 1. So it repeats for the next line. When my code reaches the 3rd line, and it doesnt find 4 or more numbers it needs to delete the line.