Click here to Skip to main content
15,925,113 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: CreateCompatibleBitmap - no error, but can't draw on huge bitmaps Pin
spqr19-Feb-03 10:35
spqr19-Feb-03 10:35 
GeneralRe: CreateCompatibleBitmap - no error, but can't draw on huge bitmaps Pin
Chris Losinger19-Feb-03 10:41
professionalChris Losinger19-Feb-03 10:41 
GeneralRe: CreateCompatibleBitmap - no error, but can't draw on huge bitmaps Pin
spqr19-Feb-03 18:51
spqr19-Feb-03 18:51 
GeneralRe: CreateCompatibleBitmap - no error, but can't draw on huge bitmaps Pin
Chris Losinger19-Feb-03 18:54
professionalChris Losinger19-Feb-03 18:54 
GeneralRe: CreateCompatibleBitmap - no error, but can't draw on huge bitmaps Pin
spqr20-Feb-03 5:47
spqr20-Feb-03 5:47 
GeneralAssign a list of values to a class Pin
Anton A. Loukine19-Feb-03 8:52
Anton A. Loukine19-Feb-03 8:52 
GeneralRe: Assign a list of values to a class Pin
Jon Hulatt19-Feb-03 8:57
Jon Hulatt19-Feb-03 8:57 
GeneralRe: Assign a list of values to a class Pin
Anton A. Loukine19-Feb-03 9:14
Anton A. Loukine19-Feb-03 9:14 
The thing is that I am assigning this array to a class, which has variables other than the 2-dimensional array or numbers (I don't think shallow assignment will do here):

class matrix
{
private:
double **_m;
double *_v;
int _nType, _nRows, _nCols;

void _Copy( const matrix &m1 );
void _Destroy( );

public:
// Default constructor
matrix( int nMatrixType = mxMatrix, int nDim1 = 0, int nDim2 = 0 );
// Copy constructor
matrix( const matrix &m1 );
~matrix( );

matrix& operator = ( const matrix &m1 );
matrix operator * ( const matrix &m1 );

int GetType( ) { return _nType; }
int GetRows( ) { return _nRows; }
int GetCols( ) { return _nCols; }

void Display( ) const;
double GetElement( int nDim1, int nDim2 = 0 ) const;
void SetElement( double fValue, int nDim1, int nDim2 = 0 );
matrix Transpose( );
matrix Solve( const matrix &mRHS );
};


GeneralRe: Assign a list of values to a class Pin
valikac19-Feb-03 9:19
valikac19-Feb-03 9:19 
GeneralRe: Assign a list of values to a class Pin
Anton A. Loukine19-Feb-03 9:55
Anton A. Loukine19-Feb-03 9:55 
GeneralRe: Assign a list of values to a class Pin
valikac19-Feb-03 11:50
valikac19-Feb-03 11:50 
GeneralRe: Assign a list of values to a class Pin
Blade[DMS]20-Feb-03 1:54
Blade[DMS]20-Feb-03 1:54 
Generalthis makes no sense! a for loop problem! Pin
ns19-Feb-03 8:34
ns19-Feb-03 8:34 
GeneralRe: this makes no sense! a for loop problem! Pin
Moak19-Feb-03 8:44
Moak19-Feb-03 8:44 
GeneralRe: this makes no sense! a for loop problem! Pin
Jon Hulatt19-Feb-03 9:00
Jon Hulatt19-Feb-03 9:00 
GeneralRe: this makes no sense! a for loop problem! Pin
Moak19-Feb-03 9:09
Moak19-Feb-03 9:09 
GeneralRe: this makes no sense! a for loop problem! Pin
ns19-Feb-03 9:09
ns19-Feb-03 9:09 
QuestionDraw listbox items into (memory) DC? Pin
Moak19-Feb-03 8:29
Moak19-Feb-03 8:29 
GeneralChanging dialog size Pin
Shay Harel19-Feb-03 8:08
Shay Harel19-Feb-03 8:08 
GeneralRe: Changing dialog size Pin
Dave Bryant19-Feb-03 8:16
Dave Bryant19-Feb-03 8:16 
GeneralRe: Changing dialog size Pin
Shay Harel19-Feb-03 8:19
Shay Harel19-Feb-03 8:19 
GeneralRe: Changing dialog size Pin
Dave Bryant19-Feb-03 8:23
Dave Bryant19-Feb-03 8:23 
GeneralRe: Changing dialog size Pin
Shay Harel19-Feb-03 8:24
Shay Harel19-Feb-03 8:24 
GeneralRe: Changing dialog size Pin
Moak19-Feb-03 8:32
Moak19-Feb-03 8:32 
GeneralRe: Changing dialog size Pin
Nitron19-Feb-03 11:56
Nitron19-Feb-03 11:56 

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.