using PictureBox
-
I read about the PictureBox class and saw that it requires the namespace:
System.Windows.Forms
you can see it here at the end of the article: PictureBox[^] How can I use the namespace? I tried to write:using namespace System.Windows.Forms
but it doesn't work. How can I use right the namespace? (I'm using vcpp 2003) Thanking you in advance! :)SnaidiS(Semion)
-
I read about the PictureBox class and saw that it requires the namespace:
System.Windows.Forms
you can see it here at the end of the article: PictureBox[^] How can I use the namespace? I tried to write:using namespace System.Windows.Forms
but it doesn't work. How can I use right the namespace? (I'm using vcpp 2003) Thanking you in advance! :)SnaidiS(Semion)
Hello You can't use .Net framework directly from unmanaged C++ code. You have to use C#, or make a managed C++ project, ie. CLI.
Regards:rose:
-
Hello You can't use .Net framework directly from unmanaged C++ code. You have to use C#, or make a managed C++ project, ie. CLI.
Regards:rose:
-
oh Ok ty,So what can I use at CVPP that makes the same\almost the same like PictureBox?:confused:
SnaidiS(Semion)
Hello I'll assume that CVPP is Visual C++, right? Well, like it in what exactly? What functionality do you need in your pictureBox that is not present in the MFC Picture Control?
Regards:rose:
-
Hello I'll assume that CVPP is Visual C++, right? Well, like it in what exactly? What functionality do you need in your pictureBox that is not present in the MFC Picture Control?
Regards:rose:
-
Hello I'll assume that CVPP is Visual C++, right? Well, like it in what exactly? What functionality do you need in your pictureBox that is not present in the MFC Picture Control?
Regards:rose: