Parsing Error with using Control Array
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
I am tryin out a control array with edit boxs, but i encounter the following when i click on class wizard : "Parsing Error: "Expected";" ,Input line CEDIT m_id[17]; " Can someone tell me what went wrong here ?
-
I think you are not allowed to use an array etc inside the ClassWizard's area. I would suggest putting it outside of the ClassWizard's block like:
... //}}AFX_DATA CEdit m_id[17];
this is this.