Click here to Skip to main content
15,927,344 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to get data from a retrieve data from a list box (activeX control) Pin
Deepak Samuel24-Jul-03 3:55
Deepak Samuel24-Jul-03 3:55 
AnswerRe: How to get data from a retrieve data from a list box (activeX control) Pin
Michael P Butler24-Jul-03 6:42
Michael P Butler24-Jul-03 6:42 
GeneralTwo dimensional array problem Pin
superstein24-Jul-03 3:02
superstein24-Jul-03 3:02 
GeneralRe: Two dimensional array problem Pin
Alexander M.,24-Jul-03 3:06
Alexander M.,24-Jul-03 3:06 
GeneralRe: Two dimensional array problem Pin
John M. Drescher24-Jul-03 3:19
John M. Drescher24-Jul-03 3:19 
GeneralRe: Two dimensional array problem Pin
John M. Drescher24-Jul-03 3:32
John M. Drescher24-Jul-03 3:32 
GeneralRe: Two dimensional array problem Pin
superstein24-Jul-03 3:28
superstein24-Jul-03 3:28 
GeneralRe: Two dimensional array problem Pin
Cedric Moonen24-Jul-03 3:39
Cedric Moonen24-Jul-03 3:39 
First, with this declatration: char *m_pData[MAX_DATARULES][4]; you just declare a two dimensional array that will contains .... POINTERS TO CHAR !!! I think you have to remove the * !!

Second, if you never use the array, the problem is not because of your array ! Are you sure you never try to write or try to read in it ??? If you try to access one 'cell', be carefull: in your case it's not a char but a pointer. And this pointer is NOT INITIALIZED so, it contins an invalid adress. That's probably why you have an error !
GeneralRe: Two dimensional array problem Pin
Bob Stanneveld24-Jul-03 11:17
Bob Stanneveld24-Jul-03 11:17 
GeneralRe: Two dimensional array problem Pin
John M. Drescher24-Jul-03 3:40
John M. Drescher24-Jul-03 3:40 
GeneralSorry... Pin
John M. Drescher24-Jul-03 7:28
John M. Drescher24-Jul-03 7:28 
GeneralRe: Two dimensional array problem Pin
Cedric Moonen24-Jul-03 3:08
Cedric Moonen24-Jul-03 3:08 
GeneralRe: Two dimensional array problem Pin
John M. Drescher24-Jul-03 3:09
John M. Drescher24-Jul-03 3:09 
GeneralNeed value of EncoderSaveAsCMYK (Gdi+) Pin
Marakus24-Jul-03 3:01
Marakus24-Jul-03 3:01 
GeneralRe: Need value of EncoderSaveAsCMYK (Gdi+) Pin
Fistboy24-Jul-03 4:12
Fistboy24-Jul-03 4:12 
GeneralRe: Need value of EncoderSaveAsCMYK (Gdi+) Pin
Marakus24-Jul-03 6:39
Marakus24-Jul-03 6:39 
Generalcomment/uncomment macro Pin
sunil_g1724-Jul-03 2:33
sunil_g1724-Jul-03 2:33 
GeneralRe: Message Pin
Fistboy24-Jul-03 2:27
Fistboy24-Jul-03 2:27 
GeneralRe: Message Pin
Alexander M.,24-Jul-03 2:44
Alexander M.,24-Jul-03 2:44 
QuestionHow can I handle hardware intrrupt message? Pin
Behzad Ebrahimi24-Jul-03 2:17
Behzad Ebrahimi24-Jul-03 2:17 
AnswerRe: How can I handle hardware intrrupt message? Pin
Alexander M.,24-Jul-03 2:39
Alexander M.,24-Jul-03 2:39 
GeneralRe: How can I handle hardware intrrupt message? Pin
Behzad Ebrahimi24-Jul-03 3:33
Behzad Ebrahimi24-Jul-03 3:33 
GeneralRe: How can I handle hardware intrrupt message? Pin
John M. Drescher24-Jul-03 3:53
John M. Drescher24-Jul-03 3:53 
GeneralRe: How can I handle hardware intrrupt message? Pin
Alexander M.,24-Jul-03 5:31
Alexander M.,24-Jul-03 5:31 
GeneralRe: How can I handle hardware intrrupt message? Pin
John M. Drescher24-Jul-03 5:41
John M. Drescher24-Jul-03 5:41 

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.