|
-
Aug 13th, 2002, 08:53 AM
#1
Thread Starter
Fanatic Member
string functions
whenever i used instr() or left() right() mid() etc, i get a "invalid procedure call"
no idea whats going on...
VB Code:
For i = 0 To Len(strSource) Step 1
If Mid(strSource, i, 1) = Left(strSearch, 1) Then
For j = 0 To Len(strSearch) Step 1
Debug.Print j + i
Debug.Print Mid(strSource, j + i, 1)
Debug.Print Mid(strSearch, j, 1)
If Mid(strSource, j + i, 1) <> Mid(strSearch, j, 1) Then
isitthere = False
End If
If j = Len(strSearch) Then
isitthere = True
End If
Next j
End If
Next i
id use instr() but i keep getting errors with that, and now i get errors with mid() and left()
Visit www.fragblast.com
Gaming, forums, and a online RPG/Battle system
(__Flagg) DOT NET? is this a Hindi Dating service?
-
Aug 13th, 2002, 09:07 AM
#2
Thread Starter
Fanatic Member
alright cool, worked, thanks
Visit www.fragblast.com
Gaming, forums, and a online RPG/Battle system
(__Flagg) DOT NET? is this a Hindi Dating service?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|