Quote Originally Posted by ShlupMoo
You guys are so silly xD

Samuraid, your advice helped to ensure the success of PG's 'first' application (as opposed to the stuff I did in class seven or eight years ago, which I don't count as applications, but more of an assignment). The thing was, when I used the right(string, stringlength as string) function, I didn't know what to do with the stringlength. So I just plugged 2 in there (c:\ = string of 0 1 2 chars I reasoned), and it didn't work. So I put a textbox to see what right (string, 2) was, and it was ":\" (!!)

So I just adjusted the if statement to look for ":\" and all was super! Yay
Cool. Actually I was suggesting:

If Right(pathstring, 1) <> "\" Then
pathstring = pathstring & "\"
End If

But it's good you got it figured out anyway.