How would this code be made to actually work ?
(CurrSong is a string)
VB Code:
If Left(CurrSong, 9) = "[Opening]" Then CurrSong = Left(CurrSong, Len(CurrSong) - 9)
Thanks in Advance :)
Printable View
How would this code be made to actually work ?
(CurrSong is a string)
VB Code:
If Left(CurrSong, 9) = "[Opening]" Then CurrSong = Left(CurrSong, Len(CurrSong) - 9)
Thanks in Advance :)
Nvm, i got it, i forgot to subtract the stuff from the correct side :P
VB Code:
If Right(CurrSong, 9) = "[Opening]" Then CurrSong = Right(CurrSong, Len(CurrSong) - 9)