|
-
May 23rd, 2002, 03:14 PM
#2
Addicted Member
Here's a couple of other approaches similar to what you already have.
If data.IndexOf(Name) > 0 AndAlso data.IndexOf(pass) > 0 Then
accountok()
Else
accountbad()
End If
p = data.IndexOf(Name)
If p > 0 AndAlso data.Substring(p + Name.Length + 1, pass.Length) = pass Then
accountok
else
accountbad
End If
That which does not kill us, only makes us stronger. 
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
|