| View previous topic :: View next topic |
| Author |
Message |
Marcel Guest
|
Posted: Fri Sep 24, 2004 9:34 am Post subject: writing out table |
|
|
How can this be rewritten using iterators?
for(int i = 0; i < theTable.rows.size(); i++) {
TXT += WideString(" - ROW - ");
for(int j = 0; j < theTable.rows[i].cells.size(); j++) {
TXT += WideString(" - CELL- ");
}
}
Marcel
|
|
| Back to top |
|
 |
Remy Lebeau (TeamB) Guest
|
Posted: Fri Sep 24, 2004 4:34 pm Post subject: Re: writing out table |
|
|
"Marcel" <sorryafraidofspam (AT) nospam (DOT) com> wrote
| Quote: | How can this be rewritten using iterators?
|
This is not an ActiveX issue. You question should be directed to the
"borland.public.cppbuilder.language.cpp" group instead.
Gambit
|
|
| Back to top |
|
 |
|