我是一个尝试拥有多种形式的新程序员。
我尝试使用按钮打开一个新表单:
{
//This will open the ordering widow
NewOrder^ order = gcnew NewOrder;
order->Show();
//This one is to hide the current form
this->Hide();
}
但是它给我一条错误信息说:
\ projects \ cppwinform1 \ cppwinform1 \ MyForm.h(135):错误C2227:左边的' - >显示'必须指向class / struct / union / generic类型
\ projects \ cppwinform1 \ cppwinform1 \ MyForm.h(135):注意:类型是' unknown-type
其中第135行是order-> Show(); 如果有人可以帮我解决这个问题,请打开我的其他表格
日Thnx
答案 0 :(得分:0)
你可能需要在gcnew的类名后加上括号吗?