-
ok, i want my program look for a certain string/keyword in one of my files on my computer:
<A HREF="ftp://
Thats the word i want it to look for, but if u havent all ready guessed it. It wont work. Reason for it is becuase of the darn quotes. I HAVE TO HAVE THE QUOTES IN THERE! ahmm, i just had to get that out of the way becuase i know what most of u are going to say :). Now, how do i get around this prob?
This was the string i was going to use before this prob came along:
Code:
intAPOS = InStr(1, strFTPs, "<A HREF="ftp://")
Thanks (again)
-
Code:
intAPOS = InStr(1, strFTPs, "<A HREF=" & Chr(34) & "ftp://")
try that...
-
thanks alot, i knew it had to be an acsii code. Just didnt know how to put it on there...
Btw, another "words or wisdom" for your collection:
Save a tree, Eat a beaver.