stdafx.h

i am working on a c++ program so i can load an image
it compiles except for one error coming up as unable to open include <stdafx.h> header file, i am using visual c++ version 6

can anybody help

thank you
ian
It should never be:
 
#include <stdafx.h> 

It should be:
 
#include "stdafx.h" 
Topic archived. No new replies allowed.