Hi,
the problem is not specific to C++ or C#... the first backslash in your path indicates that you are trying to access some "image" folder located at the root of the current drive. Removing the initial backslash (i.e. using @"image\image1.bmp"), you will get a path that indicates the "image" folder located in the current directory instead.
HTH
--mc
the problem is not specific to C++ or C#... the first backslash in your path indicates that you are trying to access some "image" folder located at the root of the current drive. Removing the initial backslash (i.e. using @"image\image1.bmp"), you will get a path that indicates the "image" folder located in the current directory instead.
HTH
--mc