↧
Relative path Winform C++
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...
View ArticleRelative path Winform C++
Is this a managed C++ application? If so, you can extract the directory name from Application.ExecutablePath to get the path to concatenate to your relative path. String^ s =...
View ArticleRelative path Winform C++
I have in folder debug folder image with image file... I try used a relative pathpath : @"\image\image1.bmp"but is wrong, usually I use C#, what is a good version of relative path in visual c++
View Article