I'm a newer of VC++.Net,
I have some ICON in resoure,
Now i want to display them in a pictureBox,
so how should i do?
Printable View
I'm a newer of VC++.Net,
I have some ICON in resoure,
Now i want to display them in a pictureBox,
so how should i do?
Code:Image^ img = gcnew Bitmap("<path>\\yourIconFile.ico");
pictureBox1->Image = img;