Click here to Skip to main content
15,920,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Modifying the limits of an integer edit control Pin
adamUK16-Oct-02 9:29
adamUK16-Oct-02 9:29 
GeneralRe: Modifying the limits of an integer edit control Pin
jhwurmbach16-Oct-02 20:44
jhwurmbach16-Oct-02 20:44 
GeneralRe: Modifying the limits of an integer edit control [corrected] Pin
Joaquín M López Muñoz16-Oct-02 3:34
Joaquín M López Muñoz16-Oct-02 3:34 
GeneralRe: Modifying the limits of an integer edit control Pin
Tomasz Sowinski16-Oct-02 3:44
Tomasz Sowinski16-Oct-02 3:44 
GeneralRe: Modifying the limits of an integer edit control Pin
jhwurmbach16-Oct-02 4:52
jhwurmbach16-Oct-02 4:52 
GeneralRe: Modifying the limits of an integer edit control Pin
Tomasz Sowinski16-Oct-02 5:03
Tomasz Sowinski16-Oct-02 5:03 
GeneralRe: Modifying the limits of an integer edit control Pin
PJ Arends16-Oct-02 6:16
professionalPJ Arends16-Oct-02 6:16 
GeneralFile Owner Question ...... SOS - SOS - SOS Pin
Qiang.Fu15-Oct-02 23:14
Qiang.Fu15-Oct-02 23:14 
GeneralRe: File Owner Question ...... SOS - SOS - SOS Pin
Andreas Saurwein16-Oct-02 4:10
Andreas Saurwein16-Oct-02 4:10 
GeneralRe: File Owner Question ...... SOS - SOS - SOS Pin
Qiang.Fu18-Oct-02 2:48
Qiang.Fu18-Oct-02 2:48 
Generalcalculation of runing time of program Pin
Anonymous15-Oct-02 22:35
Anonymous15-Oct-02 22:35 
GeneralRe: calculation of runing time of program Pin
l a u r e n16-Oct-02 4:46
l a u r e n16-Oct-02 4:46 
Generallicense Pin
helping hand15-Oct-02 21:11
helping hand15-Oct-02 21:11 
GeneralRe: license Pin
Christian Graus15-Oct-02 21:22
protectorChristian Graus15-Oct-02 21:22 
GeneralRe: license Pin
Jon Hulatt15-Oct-02 21:26
Jon Hulatt15-Oct-02 21:26 
GeneralRe: license Pin
Christian Graus15-Oct-02 21:38
protectorChristian Graus15-Oct-02 21:38 
GeneralRe: license Pin
Nish Nishant16-Oct-02 1:03
sitebuilderNish Nishant16-Oct-02 1:03 
GeneralRe: license Pin
Tomasz Sowinski15-Oct-02 23:37
Tomasz Sowinski15-Oct-02 23:37 
QuestionHow to export classes in ActiveX project? Pin
denkor15-Oct-02 21:05
denkor15-Oct-02 21:05 
QuestionHow to handle event in DHTML? Pin
sonshiro15-Oct-02 20:54
sonshiro15-Oct-02 20:54 
GeneralStructure Query Pin
Anonymous15-Oct-02 20:45
Anonymous15-Oct-02 20:45 
GeneralRe: Structure Query Pin
Christian Graus15-Oct-02 21:23
protectorChristian Graus15-Oct-02 21:23 
GeneralRe: Structure Query Pin
jhwurmbach15-Oct-02 22:48
jhwurmbach15-Oct-02 22:48 
GeneralIE and SSL question! Pin
wabc15-Oct-02 20:08
wabc15-Oct-02 20:08 
GeneralCArray template class Pin
15-Oct-02 19:14
suss15-Oct-02 19:14 
Hi I had a structure which looks like this:

1.
struct CMyStruct
{
5-6 CString ...;
int ...;
long ...;
1 CStringArray ...;
};

2.
My application is going to generate a lot of instances of CMyStruct; I therefore thought it to be a good idea to use the CArray MFC template class to *manage* my structs. (Adding, deleting etc.)

3.
Accordingly, I put the following definition in my dialog header file.

#include <afxtempl.h>
#include <Mystruct header file>

CArray<CMyStruct,CMyStruct&>MyStructArray;


4. After this I began using it in the following manner:

CMyStruct myStruct;
PopulateMyStruct(&myStruct);//Structure populated
MyStructArray.Add(myStruct);//ERROR PRODUCING LINE


5. On compilation i receive the following error:

\INCLUDE\afxtempl.h(443) : error C2582: 'CMyStruct' : 'operator =' function is unavailable
C:\Program Files\Microsoft Visual Studio\VC98\INCLUDE\xlocale(467) : while compiling class-template member function 'void __thiscall CArray<struct CMyStruct,struct CMyStruct &>::SetAtGrow(int,struct CMyStruct &)'


6. What could I be doing wrong??

Any help would be greatly appreciated.Unsure | :~ Cry | :((





General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.