THIS IS A MAZE ON A TUTORIAL I AM TRYING TO MAKE < I AM TRYING TO GET TO GRIPS WITH IT ALL, THE MORE I TRY FIX THE ERRORS THE MORE I GET, THANKS TO ANYONE WHO POSTS
maze.cpp : main project file.
#include "stdafx.h"
#include "Form1.h"
using namespace maze;
[STAThreadAttribute]
int main(array<System::String ^> ^args)
{
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;
}