Sorry if this is an obvious one,
I have searched but cant finds any answers :)
Im trying to create the simplest little exe file that when clicked on runs a htm page in the same directory...
so im using...
int main(int argc, char *argv[])
{
system("start iexplore.exe %0\..\the_index.htm");
return EXIT_SUCCESS;
}
It works tickety boo if i run it on my computer, in a folder on the desktop say, but if i then put it onto a cd, which is the aim, then it throws up a
cannot find 'file:///D://the_index.htm' make sure the path or Internet address is correct
The paths are correct as far as i can tell...
any ideas peeps?
thanks
Mike