Click here to Skip to main content
15,903,726 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unicode and Rich Edit Control Pin
Software200723-Oct-09 7:13
Software200723-Oct-09 7:13 
GeneralRe: Unicode and Rich Edit Control Pin
Nemanja Trifunovic23-Oct-09 8:30
Nemanja Trifunovic23-Oct-09 8:30 
GeneralRe: Unicode and Rich Edit Control Pin
Software200723-Oct-09 8:53
Software200723-Oct-09 8:53 
GeneralRe: Unicode and Rich Edit Control Pin
Michael Schubert23-Oct-09 10:45
Michael Schubert23-Oct-09 10:45 
QuestionCHAR[260] to char* Pin
Nicola Curran23-Oct-09 4:56
Nicola Curran23-Oct-09 4:56 
AnswerRe: CHAR[260] to char* Pin
Rajesh R Subramanian23-Oct-09 5:03
professionalRajesh R Subramanian23-Oct-09 5:03 
GeneralRe: CHAR[260] to char* Pin
Nicola Curran23-Oct-09 5:14
Nicola Curran23-Oct-09 5:14 
AnswerRe: CHAR[260] to char* Pin
David Crow23-Oct-09 5:12
David Crow23-Oct-09 5:12 
Two examples:

char name[260] = "Apple";
char *pname = new char[260];
  
strcpy(pname, name);
  
vector<char *> array1;
array1.push_back(pname);
  
vector<string> array2;
array2.push_back(name);


"Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown

"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons


GeneralRe: CHAR[260] to char* Pin
Nicola Curran23-Oct-09 5:21
Nicola Curran23-Oct-09 5:21 
GeneralRe: CHAR[260] to char* Pin
David Crow23-Oct-09 5:27
David Crow23-Oct-09 5:27 
AnswerRe: CHAR[260] to char* Pin
Richard MacCutchan23-Oct-09 5:14
mveRichard MacCutchan23-Oct-09 5:14 
GeneralRe: CHAR[260] to char* Pin
Nicola Curran23-Oct-09 5:16
Nicola Curran23-Oct-09 5:16 
GeneralRe: CHAR[260] to char* Pin
Richard MacCutchan23-Oct-09 5:41
mveRichard MacCutchan23-Oct-09 5:41 
QuestionCreate baloon for navigation icon which contain controls and handle these controls Pin
KSagar23-Oct-09 4:30
KSagar23-Oct-09 4:30 
AnswerRe: Create baloon for navigation icon which contain controls and handle these controls Pin
Richard MacCutchan23-Oct-09 5:03
mveRichard MacCutchan23-Oct-09 5:03 
AnswerRe: Create baloon for navigation icon which contain controls and handle these controls Pin
Iain Clarke, Warrior Programmer23-Oct-09 5:46
Iain Clarke, Warrior Programmer23-Oct-09 5:46 
Questioncan not populate multiple cell in excel by passing array from c++ XLL and usong xloper Pin
malayhk 23-Oct-09 3:24
malayhk 23-Oct-09 3:24 
Questionhow to set position of media player on anywhere on dialog box Pin
prerananit23-Oct-09 2:43
prerananit23-Oct-09 2:43 
AnswerRe: how to set position of media player on anywhere on dialog box Pin
Hans Dietrich23-Oct-09 2:54
mentorHans Dietrich23-Oct-09 2:54 
QuestionMirror Driver Pin
javad_200523-Oct-09 2:21
javad_200523-Oct-09 2:21 
AnswerRe: Mirror Driver Pin
Randor 23-Oct-09 2:34
professional Randor 23-Oct-09 2:34 
GeneralRe: Mirror Driver Pin
javad_200524-Oct-09 22:57
javad_200524-Oct-09 22:57 
GeneralRe: Mirror Driver Pin
Randor 25-Oct-09 23:36
professional Randor 25-Oct-09 23:36 
Questioncreate tentative of connection Pin
MrKBA23-Oct-09 1:47
MrKBA23-Oct-09 1:47 
QuestionCan VC60 printf () format numbers with comma thouasand seperators, eg 23,123 Pin
Neil Urquhart23-Oct-09 1:41
Neil Urquhart23-Oct-09 1:41 

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.