Click here to Skip to main content
15,881,139 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
SuggestionRe: c++ help Pin
David Crow14-Nov-14 16:24
David Crow14-Nov-14 16:24 
GeneralTwo dimmensional array using pointers on Arduino Due Pin
Vaclav_10-Nov-14 9:43
Vaclav_10-Nov-14 9:43 
GeneralRe: Two dimmensional array using pointers on Arduino Due Pin
Albert Holguin10-Nov-14 16:58
professionalAlbert Holguin10-Nov-14 16:58 
GeneralRe: Two dimmensional array using pointers on Arduino Due Pin
Vaclav_11-Nov-14 3:39
Vaclav_11-Nov-14 3:39 
SuggestionMessage Closed Pin
15-Nov-14 7:37
4india15-Nov-14 7:37 
GeneralRe: Two dimmensional array using pointers on Arduino Due Pin
Albert Holguin15-Nov-14 7:57
professionalAlbert Holguin15-Nov-14 7:57 
QuestionRe: Two dimmensional array using pointers on Arduino Due Pin
David Crow11-Nov-14 4:12
David Crow11-Nov-14 4:12 
AnswerRe: Two dimmensional array using pointers on Arduino Due Pin
Richard MacCutchan11-Nov-14 6:42
mveRichard MacCutchan11-Nov-14 6:42 
You have two main problems.

Firstly you create 10 rows and then try to initialise 20 of them each with 10 columns, try:
C++
int **Display = new int *[10];    // display rows
for (i = 0; i < 10; i++)          // initialise each of 10 rows
    Display[i] = new int[20];      // with 20 columns

When adding your counter values into the array you increment your Display pointer (which indexes the rows only), which means that after 10 iterations it is pointing to an invalid address. Try using the offset values for row and column instead, as it will also make your code clearer, thus:
C++
// iterate through the 10 rows
for ( i = 0; i < iRow; i++)
{
    // for each column in the current row
    for (j = 0; j < iCol; j++)
    {
        // set the value of count
        Display[i][j] = iCount;
        ++iCount;
    }
}

GeneralSOLVED Re: Two dimmensional array using pointers on Arduino Due Pin
Vaclav_11-Nov-14 8:30
Vaclav_11-Nov-14 8:30 
GeneralRe: SOLVED Re: Two dimmensional array using pointers on Arduino Due Pin
Richard MacCutchan11-Nov-14 20:57
mveRichard MacCutchan11-Nov-14 20:57 
Questionmfc Pin
adilsk009-Nov-14 19:06
adilsk009-Nov-14 19:06 
AnswerRe: mfc Pin
_Flaviu9-Nov-14 20:18
_Flaviu9-Nov-14 20:18 
AnswerRe: mfc Pin
Richard MacCutchan9-Nov-14 21:46
mveRichard MacCutchan9-Nov-14 21:46 
AnswerRe: mfc Pin
Chris Losinger10-Nov-14 3:05
professionalChris Losinger10-Nov-14 3:05 
QuestionClasses for Win32 UI and how to hide details Pin
Fernando A. Gomez F.9-Nov-14 11:19
Fernando A. Gomez F.9-Nov-14 11:19 
AnswerRe: Classes for Win32 UI and how to hide details Pin
Orjan Westin10-Nov-14 2:55
professionalOrjan Westin10-Nov-14 2:55 
GeneralRe: Classes for Win32 UI and how to hide details Pin
Fernando A. Gomez F.10-Nov-14 6:57
Fernando A. Gomez F.10-Nov-14 6:57 
GeneralRe: Classes for Win32 UI and how to hide details Pin
Orjan Westin10-Nov-14 7:29
professionalOrjan Westin10-Nov-14 7:29 
AnswerRe: Classes for Win32 UI and how to hide details Pin
Aescleal11-Nov-14 2:05
Aescleal11-Nov-14 2:05 
GeneralRe: Classes for Win32 UI and how to hide details Pin
Fernando A. Gomez F.11-Nov-14 8:18
Fernando A. Gomez F.11-Nov-14 8:18 
QuestionCatching OnMouseMove on CGridCtrl Pin
_Flaviu7-Nov-14 0:31
_Flaviu7-Nov-14 0:31 
AnswerRe: Catching OnMouseMove on CGridCtrl Pin
_Flaviu7-Nov-14 0:44
_Flaviu7-Nov-14 0:44 
AnswerRe: Catching OnMouseMove on CGridCtrl Pin
Jochen Arndt7-Nov-14 1:56
professionalJochen Arndt7-Nov-14 1:56 
GeneralRe: Catching OnMouseMove on CGridCtrl Pin
_Flaviu7-Nov-14 2:30
_Flaviu7-Nov-14 2:30 
GeneralRe: Catching OnMouseMove on CGridCtrl Pin
Jochen Arndt7-Nov-14 2:40
professionalJochen Arndt7-Nov-14 2:40 

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.