Hi!

I've always programmed in C++ in console mode so I don't know very much about VC++,
the point is that I'm trying to export my C++ console application to a Windows form (VC++) in order to have a GUI.

The problem is that i don't know how to import my application in the windows form, I've spent some days searching info on the Internet but I haven't been able to solve my problem.

The only information I've found is that i should create a class for my console application and
call this class in the windows form, but i don't know how to call the class in the windows form and also i'm not sure if I should do it in that way (maybe I should create a .dll?)

Thanks in advance.