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

C / C++ / MFC

 
GeneralRe: i have problem with CString please help me Pin
Neo Andreson4-Nov-07 21:22
Neo Andreson4-Nov-07 21:22 
GeneralRe: i have problem with CString please help me Pin
KarstenK4-Nov-07 23:48
mveKarstenK4-Nov-07 23:48 
AnswerRe: i have problem with CString please help me Pin
Paresh Chitte4-Nov-07 19:48
Paresh Chitte4-Nov-07 19:48 
AnswerRe: i have problem with CString please help me Pin
Nishad S4-Nov-07 20:02
Nishad S4-Nov-07 20:02 
GeneralRe: i have problem with CString please help me Pin
rajneshmalik5-Nov-07 20:35
rajneshmalik5-Nov-07 20:35 
GeneralRe: i have problem with CString please help me Pin
Nishad S6-Nov-07 17:08
Nishad S6-Nov-07 17:08 
AnswerRe: i have problem with CString please help me Pin
ThatsAlok5-Nov-07 0:55
ThatsAlok5-Nov-07 0:55 
AnswerRe: i have problem with CString please help me Pin
Mark Salsbery5-Nov-07 5:40
Mark Salsbery5-Nov-07 5:40 
While you probably should use an array class as others have mentioned,
you can create multi dimension arrays on the heap if you use the proper
syntax:

CString (*mydata)[10] = new CString[10][10];
...
delete[] mydata;




Mark Salsbery
Microsoft MVP - Visual C++

Java | [Coffee]

GeneralRe: i have problem with CString please help me Pin
rajneshmalik5-Nov-07 20:35
rajneshmalik5-Nov-07 20:35 
GeneralRe: i have problem with CString please help me Pin
Mark Salsbery6-Nov-07 4:39
Mark Salsbery6-Nov-07 4:39 
Questionwhat does CListCtrl::GetItemData() & 1 mean? Pin
fantasy12154-Nov-07 18:41
fantasy12154-Nov-07 18:41 
AnswerRe: what does CListCtrl::GetItemData() & 1 mean? Pin
Neo Andreson4-Nov-07 19:34
Neo Andreson4-Nov-07 19:34 
QuestionRe: what does CListCtrl::GetItemData() & 1 mean? Pin
fantasy12154-Nov-07 19:46
fantasy12154-Nov-07 19:46 
AnswerRe: what does CListCtrl::GetItemData() & 1 mean? Pin
Nishad S4-Nov-07 21:15
Nishad S4-Nov-07 21:15 
QuestionRe: what does CListCtrl::GetItemData() & 1 mean? Pin
fantasy12156-Nov-07 21:08
fantasy12156-Nov-07 21:08 
AnswerRe: what does CListCtrl::GetItemData() & 1 mean? Pin
Nishad S6-Nov-07 21:12
Nishad S6-Nov-07 21:12 
GeneralRe: what does CListCtrl::GetItemData() & 1 mean? Pin
fantasy12158-Nov-07 18:27
fantasy12158-Nov-07 18:27 
GeneralRe: what does CListCtrl::GetItemData() & 1 mean? Pin
Nishad S11-Nov-07 16:50
Nishad S11-Nov-07 16:50 
QuestionDynamic buffer allocation Pin
CodingLover4-Nov-07 18:40
CodingLover4-Nov-07 18:40 
AnswerRe: Dynamic buffer allocation Pin
Neo Andreson4-Nov-07 19:30
Neo Andreson4-Nov-07 19:30 
AnswerRe: Dynamic buffer allocation Pin
Paresh Chitte4-Nov-07 19:52
Paresh Chitte4-Nov-07 19:52 
GeneralRe: Dynamic buffer allocation Pin
CodingLover4-Nov-07 19:59
CodingLover4-Nov-07 19:59 
GeneralRe: Dynamic buffer allocation Pin
Paresh Chitte4-Nov-07 20:03
Paresh Chitte4-Nov-07 20:03 
GeneralRe: Dynamic buffer allocation Pin
CodingLover4-Nov-07 20:34
CodingLover4-Nov-07 20:34 
GeneralRe: Dynamic buffer allocation Pin
Paresh Chitte4-Nov-07 20:42
Paresh Chitte4-Nov-07 20:42 

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.