Thanks for the previous help.
I now have a form with a button.
On click event I'd like to display a MessageBox()
MessageBox::Show("Ready","Button Test", MessageBoxButtons::OK);
The above raises an error C2653 'MessageBox' is not a class or a namespace.
I added using namespace Windows::System;
But it didn't help.
Any ideas ?