|
Hey guys I got an interesting one for you. I made this windows form, and although it runs pretty will on my computer, it refuses to run on any w/out .NET 2.0 Framework. My question is, what may be causing this? I have had library selection trouble in the past, but none of those seem to help. Heres the header:
#pragma once #include<iomanip> #include<time.h>
namespace Program {
using namespace System; using namespace System::ComponentModel; using namespace System::Collections; using namespace System::Windows::Forms; using namespace System::Data; using namespace System::Drawing;
This was compiled using Visual Studio, don't know much about what the #'s are besides the ones I put in. (Im a CSE 100 student and all we are doing is DOS stuff). OK, so thats where we stand. I am using /MD for the runtime library and /clr:pure as the other thingy. I tried /MT like in the DOS ones we had to make, but that made me change the clr, and that made my program not compile. Any ideas?
|