CHAR[100] to TextBox1->Text
-
CHAR chTest[100] = "Test";
..
textBox1->Text = chTest;Error, how convert this to textBox1?
-
Lies das: http://www.c-plusplus.net/forum/263084
Zusätzlich: Mische nicht "einfach so" C, C++ und C++/CLI.
("einfach so" == bei dir aus Unwissenheit nehme ich an)System::String^ myText = "HelloWorld"; textBox1->Text = myText;
Und noch ganz konkret zu deinem Problem:
CHAR myText [] = "HelloWorld"; textBox1->Text = gcnew System::String(myText);