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

C / C++ / MFC

 
AnswerRe: Setting Background Color of a CRichEdit Pin
Richard MacCutchan28-May-15 20:44
mveRichard MacCutchan28-May-15 20:44 
GeneralRe: Setting Background Color of a CRichEdit Pin
ForNow29-May-15 7:52
ForNow29-May-15 7:52 
GeneralRe: Setting Background Color of a CRichEdit Pin
Richard MacCutchan29-May-15 21:25
mveRichard MacCutchan29-May-15 21:25 
QuestionIs it possible to change the background color of a CMFCButton which is under control of a visual manager theme? Pin
Maximilien27-May-15 5:18
Maximilien27-May-15 5:18 
AnswerRe: Is it possible to change the background color of a CMFCButton which is under control of a visual manager theme? Pin
Albert Holguin28-May-15 4:53
professionalAlbert Holguin28-May-15 4:53 
GeneralRe: Is it possible to change the background color of a CMFCButton which is under control of a visual manager theme? Pin
Maximilien28-May-15 7:41
Maximilien28-May-15 7:41 
SuggestionRe: 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 5:29
mveRichard MacCutchan28-May-15 5:29 
GeneralRe: Is it possible to change the background color of a CMFCButton which is under control of a visual manager theme? Pin
Maximilien28-May-15 7:41
Maximilien28-May-15 7:41 
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 
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 
Ok then..

I did what you told me but the results are still the same
The problem is in the second while

and in entrenceToTheFolderBefore 1 more bit as null gives me =@$&!%

int temp3 = location + 1;
char* entrenceToTheFolderBefore = (char*)malloc(sizeof(char)*temp3);
for (int i = 0; i < location; i++)
{
entrenceToTheFolderBefore[i] = argv[1][i];
}

puts(entrenceToTheFolderBefore);


location2 = location;

while (location2 != argvSize)
{
location2++;
UnwantedName[countLoop] = argv[1][location2]; // problem
countLoop++;
}



OtherDir = opendir(entrenceToTheFolderBefore);
while (OtherEnt = readdir(OtherDir)) ////UnwatedName = C2_Mid_Anti-Virus_Project.zip
{
if ((strcmp(OtherEnt->d_name, UnwantedName) != 0) && (strcmp(OtherEnt->d_name, ".") != 0) && (strcmp(OtherEnt->d_name, "..") != 0)) //problem
{
strcpy(InfectedFolderPath, entrenceToTheFolderBefore);
strcat(InfectedFolderPath, "/");
strcat(InfectedFolderPath, OtherEnt->d_name);
puts(InfectedFolderPath);

}
}
closedir(OtherDir);



modified 24-May-15 13:30pm.

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 

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.