Justin_9 0 Newbie Poster

Im developing a windows form application is Visual Studio Express 2013 I made a New Project -> Empty CLR Project then i added the windows form UI and i coded the (myprojectname).cpp this code

#include "MyForm.h"


using namespace winformapp;

[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 MyForm());
    return 0;
}

but my problem well idk if its a problem is when i build the project and run it i usually run it as either debug or release

but it runs great but when i do use local debugger 4 watch windows come up and a blank cmd and then my form here is a picture
http://i.imgur.com/sI2StkE.png

and when i run without debugger a blank cmd still comes up im just wondering if this is normal cause in Visual C++ 2010 this dosnt happen

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.