Not sure about VS2008 but earlier version ran the program with a current directory of debug (or release, I guess) underneath your project directory. You may have to make sure you use that as the root of your path.
Alternatively, prepend your relative path with "..\".
Temporarily put a "system("cd");" inside your code to find out where it's actually running from or use GetCurrentDirectory(...) as suggested by Nick.
