MFC Doc/View
-
Thanks Jack Squirrel! My problem now is to transfer an array of double from the 'Doc to the 'View. I can make the transfer via a CArray of CString 's, which would be ok but messy. When I say 'transfer' I mean read the contents of doubles filled and working nicely in 'Doc into 'View. Clicking them all across with the mouse is not on the agenda. Thanks. Zeitweise wissen wir nicht was wir wissen.
-
Thanks Jack Squirrel! My problem now is to transfer an array of double from the 'Doc to the 'View. I can make the transfer via a CArray of CString 's, which would be ok but messy. When I say 'transfer' I mean read the contents of doubles filled and working nicely in 'Doc into 'View. Clicking them all across with the mouse is not on the agenda. Thanks. Zeitweise wissen wir nicht was wir wissen.
E Dyot wrote: My problem now is to transfer an array of double from the 'Doc to the 'View. So you have something like:
class CMyDocument : public CDocument
{
public:
double m_arrNumbers[5]; // an array of doubles
};
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
-
E Dyot wrote: My problem now is to transfer an array of double from the 'Doc to the 'View. So you have something like:
class CMyDocument : public CDocument
{
public:
double m_arrNumbers[5]; // an array of doubles
};
"Ideas are a dime a dozen. People who put them into action are priceless." - Unknown
= ....; }