Nice fix, and I don't mind that http:// is made lowercase automatically.
The fix I fuond was this, but I'm not sure if that was correct:
In the function FormatStr I now see this:
fString = ChkURLs(fString, "http://", 1)
fString = ChkURLs(fString, "https://", 2)
if VerifyWWW(fString) = True then
fString = ChkURLs(fString, "www.", 3)
end if
fString = Replace(fString, CHR(133), "...")
fString = ChkMail(fString)
fString = ChkURLs(fString, "ftp://", 5)
fString = ChkURLs(fString, "file:///", 6)
to this
fString = ChkURLs(fString, "http://", 1)
fString = ChkURLs(fString, "HTTP://", 1)
fString = ChkURLs(fString, "https://", 2)
if VerifyWWW(fString) = True then
fString = ChkURLs(fString, "www.", 3)
end if
fString = Replace(fString, CHR(133), "...")
fString = ChkMail(fString)
fString = ChkURLs(fString, "ftp://", 5)
fString = ChkURLs(fString, "file:///", 6)
When I changed this it worked...but I'm not sure what the number is for....it seems to add up, as the next one in line is 3,5, and 6...?
<