我用对话框模式建立vc工程,主对话框是CTestDlg,里面有一个数组student[5000]我又建立了一个对话框CPop
希望将主类里面的数组拷贝到CPop类里面的数组popstudent[5000]再主类CTestDlg里面实现了
CPop pop;
然后拷贝
for(int Circle=1;Circle < someValue; Circle++)
{
 pop.popstudent[Ciecle] = student[Circle];
}
为什么编译器告诉我popstudent找不到啊!!!!!!!
怎么写才成呢!!!!!!
谢谢了!!!!!!