MessageBox in Visual C++ 2005?
I'm normally a Visual Basic/C# programmer and am now trying to transition over to C++a bit. I can really use help tho, see I want to learn how to make a simple message box show in C++. How can I transfer somthing like msgbox("yo") to C++?
Any help appreciated, thanks.
-Andrew
From MSDN (http://msdn2.microsoft.com/en-us/library/ms645505.aspx)
One of the biggest differences between C#/managed C++ and C++ is the Windows UI. The advantage of using the Windows API instead of CLR is that your code will be portable as long as you keep the Windows part separate from your main code.
#If you have any other info about this subject , Please add it free.# |

