//GlobalTest.cpp : main project file. #include "stdafx.h" #include "Form1.h" using namespace GlobalTest; double XX[7] = { 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0}; double ZZ = 3; [STAThreadAttribute] int main(array<System::String ^> ^args) { double YY[7]; for(int i=0; i<7; i++) { YY[i] = XX[i]; } // Enabling Windows XP visual effects before any controls are created Application::EnableVisualStyles(); Application::SetCompatibleTextRenderingDefault(false); // Create the main window and run it Application::Run(gcnew Form1()); return 0; }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)