Ahh got my head into a bit of a spin
Can anyone tell me how to cut off the first character from this
I'm just trying to get rid of the "Quote:
"C:\Program Files\Winamp
Printable View
Ahh got my head into a bit of a spin
Can anyone tell me how to cut off the first character from this
I'm just trying to get rid of the "Quote:
"C:\Program Files\Winamp
Right(Dirname, Len(Dirname) - 1)
got it :)
You can also use:
Mid$ (Dirname, 2)
It's a bit faster.. although it won't make much difference unless you run it a few hundred times!