Click here to Skip to main content
15,904,503 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Edit box Pin
Diglu27-Jun-06 20:31
Diglu27-Jun-06 20:31 
AnswerRe: Edit box Pin
songlei27-Jun-06 19:12
songlei27-Jun-06 19:12 
Questionhow to change the background color of menu bar ? Pin
mimimimilaw27-Jun-06 18:34
mimimimilaw27-Jun-06 18:34 
AnswerRe: how to change the background color of menu bar ? Pin
songlei27-Jun-06 19:14
songlei27-Jun-06 19:14 
AnswerRe: how to change the background color of menu bar ? Pin
Walter Zorn28-Jun-06 14:27
Walter Zorn28-Jun-06 14:27 
QuestionMime Filter and Name Space problem Pin
Tcpip200527-Jun-06 18:03
Tcpip200527-Jun-06 18:03 
QuestionSend Integer to DLL Pin
borono27-Jun-06 17:39
borono27-Jun-06 17:39 
AnswerRe: Send Integer to DLL Pin
bob1697227-Jun-06 19:17
bob1697227-Jun-06 19:17 
GeneralRe: Send Integer to DLL Pin
borono27-Jun-06 19:35
borono27-Jun-06 19:35 
GeneralRe: Send Integer to DLL Pin
Anna-Jayne Metcalfe27-Jun-06 21:48
Anna-Jayne Metcalfe27-Jun-06 21:48 
GeneralRe: Send Integer to DLL Pin
borono27-Jun-06 22:08
borono27-Jun-06 22:08 
AnswerRe: Send Integer to DLL Pin
S Douglas28-Jun-06 12:21
professionalS Douglas28-Jun-06 12:21 
QuestionAccesing protected function from another class Pin
Ram Murali27-Jun-06 16:00
Ram Murali27-Jun-06 16:00 
AnswerRe: Accesing protected function from another class Pin
Michael Dunn27-Jun-06 16:11
sitebuilderMichael Dunn27-Jun-06 16:11 
GeneralRe: Accesing protected function from another class [modified] Pin
The Other Brad Larsen27-Jun-06 17:36
The Other Brad Larsen27-Jun-06 17:36 
QuestionAppend a space to a string... Pin
Shrinaresh27-Jun-06 13:09
Shrinaresh27-Jun-06 13:09 
AnswerRe: Append a space to a string... Pin
Maximilien27-Jun-06 13:27
Maximilien27-Jun-06 13:27 
GeneralRe: Append a space to a string... Pin
Shrinaresh27-Jun-06 13:36
Shrinaresh27-Jun-06 13:36 
AnswerRe: Append a space to a string... Pin
Michael Dunn27-Jun-06 13:41
sitebuilderMichael Dunn27-Jun-06 13:41 
GeneralRe: Append a space to a string... Pin
Shrinaresh27-Jun-06 15:58
Shrinaresh27-Jun-06 15:58 
AnswerRe: Append a space to a string... Pin
Christian Graus27-Jun-06 13:42
protectorChristian Graus27-Jun-06 13:42 
AnswerThis is what I am trying to do... Pin
Shrinaresh27-Jun-06 16:08
Shrinaresh27-Jun-06 16:08 
When the application starts I send the initial directory as an argument...
so the command line is <exename> <rootdir>. now when the folders in the path contains space, it is recognized as more than one argument. The following code should help attach the arguments together... but the space is not being appended...
<br />
if (argc==1)<br />
	initpath[0]='\0';<br />
else {<br />
	strcpy(initpath, argv[1]);<br />
	for (i=2;i<argc;i++) {<br />
		strcat(initpath, argv[i]);<br />
		strcat(initpath, " ");<br />
	}<br />
}<br />

GeneralRe: This is what I am trying to do... Pin
Michael Dunn27-Jun-06 16:16
sitebuilderMichael Dunn27-Jun-06 16:16 
GeneralRe: This is what I am trying to do... Pin
Shrinaresh27-Jun-06 16:36
Shrinaresh27-Jun-06 16:36 
QuestionRe: This is what I am trying to do... Pin
David Crow28-Jun-06 7:33
David Crow28-Jun-06 7:33 

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.