12345678910
#include "Form1.h" using namespace Example; int main() { Form1^ myform1 = gcnew Form1(); myform1->textBox1->Text = "Some Text"; Application::Run(gcnew Form1()); return 0; }