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

C / C++ / MFC

 
AnswerRe: acessing source data on a URL Pin
N a v a n e e t h1-Dec-09 17:13
N a v a n e e t h1-Dec-09 17:13 
AnswerRe: acessing source data on a URL Pin
Garth J Lancaster1-Dec-09 17:55
professionalGarth J Lancaster1-Dec-09 17:55 
QuestionRe: acessing source data on a URL Pin
David Crow2-Dec-09 3:22
David Crow2-Dec-09 3:22 
AnswerRe: acessing source data on a URL Pin
solinb2-Dec-09 6:18
solinb2-Dec-09 6:18 
QuestionRe: acessing source data on a URL Pin
David Crow2-Dec-09 7:28
David Crow2-Dec-09 7:28 
AnswerRe: acessing source data on a URL Pin
solinb3-Dec-09 9:04
solinb3-Dec-09 9:04 
GeneralRe: acessing source data on a URL Pin
David Crow3-Dec-09 9:52
David Crow3-Dec-09 9:52 
GeneralRe: acessing source data on a URL Pin
solinb3-Dec-09 9:59
solinb3-Dec-09 9:59 
AnswerRe: acessing source data on a URL Pin
solinb11-Dec-09 10:11
solinb11-Dec-09 10:11 
QuestionHow do you relabel "Toolbar Options" from a CMFCOutlookBar? Pin
Dale Haessel1-Dec-09 9:02
Dale Haessel1-Dec-09 9:02 
QuestionParameter to hide textbox/label at runtime through SendMessage() Pin
Supriya Tonape1-Dec-09 4:47
Supriya Tonape1-Dec-09 4:47 
QuestionRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
David Crow1-Dec-09 5:01
David Crow1-Dec-09 5:01 
AnswerRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
Code-o-mat1-Dec-09 8:19
Code-o-mat1-Dec-09 8:19 
GeneralRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
David Crow1-Dec-09 8:25
David Crow1-Dec-09 8:25 
AnswerRe: Parameter to hide textbox/label at runtime through SendMessage() [modified] Pin
Code-o-mat1-Dec-09 8:22
Code-o-mat1-Dec-09 8:22 
GeneralRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
Supriya Tonape1-Dec-09 20:13
Supriya Tonape1-Dec-09 20:13 
GeneralRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
Code-o-mat1-Dec-09 20:30
Code-o-mat1-Dec-09 20:30 
GeneralRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
Richard MacCutchan1-Dec-09 21:37
mveRichard MacCutchan1-Dec-09 21:37 
GeneralRe: Parameter to hide textbox/label at runtime through SendMessage() Pin
Supriya Tonape2-Dec-09 22:43
Supriya Tonape2-Dec-09 22:43 
QuestionProgrammatically deleting old files with a C program Pin
ChemmieBro1-Dec-09 3:46
ChemmieBro1-Dec-09 3:46 
QuestionRe: Programmatically deleting old files with a C program Pin
David Crow1-Dec-09 3:51
David Crow1-Dec-09 3:51 
AnswerRe: Programmatically deleting old files with a C program Pin
loyal ginger1-Dec-09 6:28
loyal ginger1-Dec-09 6:28 
GeneralRe: Programmatically deleting old files with a C program Pin
ChemmieBro1-Dec-09 6:55
ChemmieBro1-Dec-09 6:55 
AnswerRe: Programmatically deleting old files with a C program Pin
Patcher321-Dec-09 17:53
Patcher321-Dec-09 17:53 
GeneralRe: Programmatically deleting old files with a C program Pin
vasu_sri2-Dec-09 0:33
vasu_sri2-Dec-09 0:33 
just create a file with number like file1.txt,file2.txt ..... file20.txt.
after that, check like this,

for (int i=0;i<20;i++)
{
    CString str;
    str.Format(_T("file%d"),i);
    if(!PathFileExists(str))
        break;
            DeleteFile(str);

}


if file doesn't exists then break the loop.

Regards,
Srinivas

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.