摘要:
struct student { char name[8]; char sex[2]; int num; }; student stu[3]; //还是用student* stu[3];为什么? for(int i=0; i<3; i++) stu[i] = new student; stu[0]->num = 0;
......
摘要:
看程序: ... <table> <form action=.. method=post> <tr> <td><input type=text name=user></td> </tr> <tr> <td><input type=password name=pass>&l......
GetPane()这个函数怎么用
求救!
NO.1 作者: etboy327
CSplitterWnd m_wndSplitter; //定义一个CSplitterWnd对象
CWnd* pWnd = m_wndSplitter.GetPane(0, 1); //通过这个对象的成员函数获得窗口指针
摘要:
同上
......