J
John Davis
What is this function attempting to do? Please advice. Thanks!
Function UnknownFunction(x)
If InStr(x, "http://")=0 Then
vx = x
Else
vx = Replace(x,"http://","")
End If
vAD = "1234567890qwertyuiopasdfghjklzxcvbnm_./"
UnknownFunction = True
For I=1 to Len(vx)
Symbol = Mid(vx,I,1)
If InStr(1,vAD, Symbol, 0) = 0 Then UnknownFunction = False
Next
End Function
Function UnknownFunction(x)
If InStr(x, "http://")=0 Then
vx = x
Else
vx = Replace(x,"http://","")
End If
vAD = "1234567890qwertyuiopasdfghjklzxcvbnm_./"
UnknownFunction = True
For I=1 to Len(vx)
Symbol = Mid(vx,I,1)
If InStr(1,vAD, Symbol, 0) = 0 Then UnknownFunction = False
Next
End Function