我在VC表单应用程序中需要一些变量继承的帮助!我有这段代码:
string ks;
ifstream sfile(ks);
if (sfile)
{
PatInfo ^ form = gcnew PatInfo;
form->ShowDialog();
}
else
{
MessageBox::Show( "Please try again.");
}
我想将ks字符串传递给PatInfo表单。怎么办呢?