#include "MyForm.h"
void showvec(System::Windows::Forms::TextBox^ &textBox)
{
textBox->Text = "";
}`
问题是:我无法将textBox1->text
传递给此功能。此外,似乎我甚至无法创建指向textBox1->text
的指针。 Visual Studio编译了函数但我无法测试它。
答案 0 :(得分:0)
功能代码是:
void showvec(System::Windows::Forms::TextBox^ textBox)
{
textBox->Text = "hgghjg";
}
,电话是:
showvec(textBox1);
我在其他地方得到了这个答案。我希望它会帮助别人。