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

C / C++ / MFC

 
GeneralRe: Is it possible to change the background color of a CMFCButton which is under control of a visual manager theme? Pin
Richard MacCutchan28-May-15 20:42
mveRichard MacCutchan28-May-15 20:42 
GeneralRe: Is it possible to change the background color of a CMFCButton which is under control of a visual manager theme? Pin
Maximilien29-May-15 1:50
Maximilien29-May-15 1:50 
Questiontool-tip Pin
Member 1168600526-May-15 17:11
Member 1168600526-May-15 17:11 
AnswerRe: tool-tip Pin
_Flaviu26-May-15 21:41
_Flaviu26-May-15 21:41 
QuestionSimple anti virus project (Argv FILE* dirent.h) Pin
a random user24-May-15 4:49
a random user24-May-15 4:49 
AnswerRe: Simple anti virus project (Argv FILE* dirent.h) Pin
Richard MacCutchan24-May-15 6:09
mveRichard MacCutchan24-May-15 6:09 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
a random user24-May-15 6:21
a random user24-May-15 6:21 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
Richard MacCutchan24-May-15 6:47
mveRichard MacCutchan24-May-15 6:47 
OK, let us say that you have a path ("C:\Users\Noname\Documents\Test") in argv[1], and you now want to inspect a subdirectory called "images":
C++
int argvSize = strlen(argv[1]); // the number of characters in the base path
// calculate the space needed for the subdirectory as follows:
//     the length of the base path (argv[1])
//     plus the length of the new subdirectory
//     plus one for the backslash separator in front of the new directory
//     plus 1 for the trailing null character
//
int mallocSize = argvSize + strlen(subdir) + 1 + 1;
char* newPath = (char*)malloc(mallocSize);
strcpy(newPath, argv[1]);  // copy the root path
strcat(newPath, "\\");     // add a single trailing backslash - note two \\ required here,
                           // as the first one is treated as the escape character
strcat(newPath, subdir);   // append the new directory name at the end.
                           // The trailing null is appended automatically by strcat

//  newPath should now contain:
//                  C:\Users\Noname\Documents\Test\images

GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
a random user24-May-15 7:06
a random user24-May-15 7:06 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
Richard MacCutchan24-May-15 7:11
mveRichard MacCutchan24-May-15 7:11 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
a random user24-May-15 7:20
a random user24-May-15 7:20 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
Richard MacCutchan24-May-15 21:36
mveRichard MacCutchan24-May-15 21:36 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
a random user25-May-15 2:24
a random user25-May-15 2:24 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
Richard MacCutchan25-May-15 2:33
mveRichard MacCutchan25-May-15 2:33 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
a random user25-May-15 2:59
a random user25-May-15 2:59 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
Richard MacCutchan25-May-15 3:25
mveRichard MacCutchan25-May-15 3:25 
GeneralRe: Simple anti virus project (Argv FILE* dirent.h) Pin
a random user25-May-15 3:34
a random user25-May-15 3:34 
QuestionC language Help using Dirent.h Pin
a random user22-May-15 6:24
a random user22-May-15 6:24 
SuggestionRe: C language Help using Dirent.h Pin
Richard MacCutchan22-May-15 7:19
mveRichard MacCutchan22-May-15 7:19 
AnswerRe: C language Help using Dirent.h Pin
k505422-May-15 7:37
mvek505422-May-15 7:37 
GeneralRe: C language Help using Dirent.h Pin
a random user23-May-15 1:06
a random user23-May-15 1:06 
GeneralRe: C language Help using Dirent.h Pin
Richard MacCutchan23-May-15 2:15
mveRichard MacCutchan23-May-15 2:15 
GeneralRe: C language Help using Dirent.h Pin
a random user23-May-15 2:56
a random user23-May-15 2:56 
GeneralRe: C language Help using Dirent.h Pin
Richard MacCutchan23-May-15 3:04
mveRichard MacCutchan23-May-15 3:04 
GeneralRe: C language Help using Dirent.h Pin
a random user23-May-15 3:08
a random user23-May-15 3:08 

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.