Click here to Skip to main content
16,003,417 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Best solution for checking for duplicate values when adding to array or std::vector Pin
Nemanja Trifunovic27-Nov-07 1:34
Nemanja Trifunovic27-Nov-07 1:34 
GeneralRe: Best solution for checking for duplicate values when adding to array or std::vector Pin
NJed27-Nov-07 1:39
NJed27-Nov-07 1:39 
AnswerRe: Best solution for checking for duplicate values when adding to array or std::vector Pin
Nelek27-Nov-07 3:04
protectorNelek27-Nov-07 3:04 
QuestionRich edit control Pin
Maynka27-Nov-07 1:19
Maynka27-Nov-07 1:19 
QuestionRe: Rich edit control Pin
David Crow27-Nov-07 3:27
David Crow27-Nov-07 3:27 
AnswerRe: Rich edit control Pin
Hamid_RT29-Nov-07 4:08
Hamid_RT29-Nov-07 4:08 
Questionconvert 'char *' to 'LPCTSTR' Pin
neha.agarwal2727-Nov-07 1:08
neha.agarwal2727-Nov-07 1:08 
AnswerRe: convert 'char *' to 'LPCTSTR' Pin
Cedric Moonen27-Nov-07 1:14
Cedric Moonen27-Nov-07 1:14 
Don't use a char pointer but a TCHAR pointer (which is a macro that resolves to wchar if UNICODE is defined or to char if UNICODE is not defined). And use _stprintf instead of sprintf.
You also forgot to create an array of the correct size.

int len = finder.GetLength();
TCHAR *len_str = new TCHAR[len];
_stprintf(len_str,_T("%d"),len);
m_Files.SetItemText(i,1,len_str);


EDIT: don't forget to delete[] the buffer once you are done with it.


Cédric Moonen
Software developer

Charting control [v1.2]

AnswerRe: convert 'char *' to 'LPCTSTR' Pin
Kenan Aksoy27-Nov-07 1:59
Kenan Aksoy27-Nov-07 1:59 
GeneralRe: convert 'char *' to 'LPCTSTR' Pin
Cedric Moonen27-Nov-07 2:14
Cedric Moonen27-Nov-07 2:14 
GeneralRe: convert 'char *' to 'LPCTSTR' Pin
krmed27-Nov-07 2:10
krmed27-Nov-07 2:10 
GeneralRe: convert 'char *' to 'LPCTSTR' Pin
Cedric Moonen27-Nov-07 2:17
Cedric Moonen27-Nov-07 2:17 
GeneralRe: convert 'char *' to 'LPCTSTR' Pin
krmed27-Nov-07 6:58
krmed27-Nov-07 6:58 
GeneralI understand the point, but Pin
CPallini27-Nov-07 3:02
mveCPallini27-Nov-07 3:02 
GeneralRe: I understand the point, but Pin
krmed27-Nov-07 5:47
krmed27-Nov-07 5:47 
GeneralRe: I understand the point, but Pin
CPallini27-Nov-07 6:04
mveCPallini27-Nov-07 6:04 
GeneralRe: I understand the point, but Pin
krmed27-Nov-07 6:56
krmed27-Nov-07 6:56 
AnswerRe: convert 'char *' to 'LPCTSTR' Pin
David Crow27-Nov-07 3:28
David Crow27-Nov-07 3:28 
AnswerRe: convert 'char *' to 'LPCTSTR' Pin
Mark Salsbery27-Nov-07 7:01
Mark Salsbery27-Nov-07 7:01 
AnswerRe: convert 'char *' to 'LPCTSTR' Pin
Hamid_RT29-Nov-07 4:07
Hamid_RT29-Nov-07 4:07 
Questionwrite to a text file Pin
tasumisra27-Nov-07 1:06
tasumisra27-Nov-07 1:06 
AnswerRe: write to a text file Pin
Cedric Moonen27-Nov-07 1:09
Cedric Moonen27-Nov-07 1:09 
GeneralRe: write to a text file Pin
tasumisra27-Nov-07 1:17
tasumisra27-Nov-07 1:17 
AnswerRe: write to a text file Pin
Hamid_RT27-Nov-07 1:10
Hamid_RT27-Nov-07 1:10 
GeneralRe: write to a text file Pin
tasumisra27-Nov-07 1:20
tasumisra27-Nov-07 1:20 

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.