Click here to Skip to main content
15,887,027 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help me to decipher the error messages Pin
Gerry Schmitz26-Jan-24 6:13
mveGerry Schmitz26-Jan-24 6:13 
QuestionLoop thru two dimensional array - edited Pin
Salvatore Terress15-Jan-24 7:41
Salvatore Terress15-Jan-24 7:41 
AnswerRe: Loop thru two dimensional array Pin
jeron115-Jan-24 9:31
jeron115-Jan-24 9:31 
GeneralRe: Loop thru two dimensional array Pin
Salvatore Terress15-Jan-24 9:50
Salvatore Terress15-Jan-24 9:50 
AnswerRe: Loop thru two dimensional array Pin
k505415-Jan-24 10:45
mvek505415-Jan-24 10:45 
GeneralRe: Loop thru two dimensional array Pin
Salvatore Terress15-Jan-24 12:28
Salvatore Terress15-Jan-24 12:28 
AnswerSOLVED Re: Loop thru two dimensional array - edited Pin
Salvatore Terress15-Jan-24 12:49
Salvatore Terress15-Jan-24 12:49 
QuestionRe: SOLVED Re: Loop thru two dimensional array - edited Pin
jeron116-Jan-24 6:39
jeron116-Jan-24 6:39 
To me anyway, your for loop test seems tailored to the actual counts of items and subitems, what if each QStringList had 15 strings instead of 4?

Couldn't you use containers analogous to stl contianers
something along the lines of;
QList<QStringList> myList;

QStringList strlist1 = { "Blah1", "Blah2", "Blah3" };
QStringList strlist2 = { "Blah4", "Blah5", "Blah6" };
QStringList strlist3 = { "Blah7", "Blah8", "Blah9" };

myList.push_back(strList1);
myList.push_back(strList2);
myList.push_back(strList3);

  for (int mainIndex = 0; mainIndex < myList.size(); mainIndex++)
  {
     // do item stuff
  
     for (int subIndex = 0; subIndex < myList[mainIndex].size(); subIndex++)
     {
        // do some sub item stuff
     }
  }

"the debugger doesn't tell me anything because this code compiles just fine" - random QA comment
"Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst
"I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle

AnswerRe: SOLVED Re: Loop thru two dimensional array - edited Pin
Salvatore Terress16-Jan-24 7:20
Salvatore Terress16-Jan-24 7:20 
QuestionAdding "checkable " in Qt QMenu / QAction using C++ partially fails Pin
Salvatore Terress13-Jan-24 16:29
Salvatore Terress13-Jan-24 16:29 
AnswerRe: Adding "checkable " in Qt QMenu / QAction using C++ partially fails Pin
Richard MacCutchan13-Jan-24 21:09
mveRichard MacCutchan13-Jan-24 21:09 
AnswerRe: Adding "checkable " in Qt QMenu / QAction using C++ partially fails Pin
Dave Kreskowiak14-Jan-24 6:06
mveDave Kreskowiak14-Jan-24 6:06 
AnswerRe: Adding "checkable " in Qt QMenu / QAction using C++ partially fails Pin
jschell15-Jan-24 4:00
jschell15-Jan-24 4:00 
GeneralRe: Adding "checkable " in Qt QMenu / QAction using C++ partially fails Pin
Salvatore Terress15-Jan-24 7:06
Salvatore Terress15-Jan-24 7:06 
Questionmemory allocation failure Pin
mike741111-Jan-24 1:28
mike741111-Jan-24 1:28 
AnswerRe: memory allocation failure Pin
Mircea Neacsu11-Jan-24 1:37
Mircea Neacsu11-Jan-24 1:37 
GeneralRe: memory allocation failure Pin
mike741111-Jan-24 3:28
mike741111-Jan-24 3:28 
GeneralRe: memory allocation failure Pin
Richard MacCutchan11-Jan-24 3:35
mveRichard MacCutchan11-Jan-24 3:35 
GeneralRe: memory allocation failure Pin
Mircea Neacsu11-Jan-24 3:40
Mircea Neacsu11-Jan-24 3:40 
AnswerRe: memory allocation failure Pin
CPallini11-Jan-24 1:38
mveCPallini11-Jan-24 1:38 
QuestionHow to read a specified amount bytes from a binary-file with a offset (C++) Pin
P. Mehroof Abid7-Jan-24 3:24
P. Mehroof Abid7-Jan-24 3:24 
AnswerRe: How to read a specified amount bytes from a binary-file with a offset (C++) PinPopular
Mircea Neacsu7-Jan-24 4:13
Mircea Neacsu7-Jan-24 4:13 
GeneralRe: How to read a specified amount bytes from a binary-file with a offset (C++) Pin
Daniel Pfeffer8-Jan-24 9:28
professionalDaniel Pfeffer8-Jan-24 9:28 
Questioncatching a divide-by-zero error Pin
mike74115-Jan-24 6:52
mike74115-Jan-24 6:52 
AnswerRe: catching a divide-by-zero error Pin
Maximilien5-Jan-24 6:54
Maximilien5-Jan-24 6:54 

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.