Click here to Skip to main content
15,897,891 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralSony LCD monitor (french) Pin
jancsi14-Apr-03 10:57
jancsi14-Apr-03 10:57 
GeneralRe: Sony LCD monitor (french) Pin
Michael Dunn14-Apr-03 11:09
sitebuilderMichael Dunn14-Apr-03 11:09 
GeneralRe: Sony LCD monitor (french) Pin
jeremysay14-Apr-03 23:44
jeremysay14-Apr-03 23:44 
QuestionHow to delete a file in MFC Pin
Anonymous14-Apr-03 10:34
Anonymous14-Apr-03 10:34 
AnswerRe: How to delete a file in MFC Pin
Chris Losinger14-Apr-03 10:37
professionalChris Losinger14-Apr-03 10:37 
AnswerRe: How to delete a file in MFC Pin
Joe Woodbury14-Apr-03 10:37
professionalJoe Woodbury14-Apr-03 10:37 
GeneralRe: How to delete a file in MFC Pin
gmlnd14-Apr-03 10:41
gmlnd14-Apr-03 10:41 
GeneralRe: How to delete a file in MFC Pin
Selevercin14-Apr-03 13:49
Selevercin14-Apr-03 13:49 
Have you tried messing with CFileDialog to get the user selected file. Something like this could do (not tested)...
CFileDialog File(TRUE, NULL, NULL);

if (File.DoModal == IDOK)
{
     // yes, the user does wish to delete the file
     DeleteFile(File.GetPathName);
}
</code>

That should give the basic idea!

If you have a problem with my spelling, just remember that's not my fault. I (as well as everyone else who learned to spell after 1976) blame it on Robert A. Kolpek for U.S. Patent 4,136,395.
GeneralRe: How to delete a file in MFC Pin
David Crow15-Apr-03 4:52
David Crow15-Apr-03 4:52 
Generalinitializing Pin
K. Shaffer14-Apr-03 10:31
K. Shaffer14-Apr-03 10:31 
GeneralRe: initializing Pin
Chris Losinger14-Apr-03 10:36
professionalChris Losinger14-Apr-03 10:36 
GeneralProblem with VS editor. Pin
Jack Handy14-Apr-03 10:01
Jack Handy14-Apr-03 10:01 
GeneralRe: Problem with VS editor. Pin
Joe Woodbury14-Apr-03 10:33
professionalJoe Woodbury14-Apr-03 10:33 
GeneralRe: Problem with VS editor. Pin
Jack Handy14-Apr-03 10:42
Jack Handy14-Apr-03 10:42 
GeneralRe: Problem with VS editor. Pin
Joe Woodbury14-Apr-03 11:51
professionalJoe Woodbury14-Apr-03 11:51 
GeneralRe: Problem with VS editor. Pin
Jack Handy14-Apr-03 12:11
Jack Handy14-Apr-03 12:11 
GeneralRe: Problem with VS editor. Pin
Joe Woodbury14-Apr-03 12:22
professionalJoe Woodbury14-Apr-03 12:22 
GeneralRe: Problem with VS editor. Pin
Jack Handy14-Apr-03 13:12
Jack Handy14-Apr-03 13:12 
GeneralRe: Problem with VS editor. Pin
Joe Woodbury14-Apr-03 15:21
professionalJoe Woodbury14-Apr-03 15:21 
GeneralRe: Problem with VS editor. Pin
Daniel Turini14-Apr-03 13:42
Daniel Turini14-Apr-03 13:42 
GeneralActive Desktop control fro VC++ Pin
Dr Soong14-Apr-03 8:59
Dr Soong14-Apr-03 8:59 
GeneralRe: Active Desktop control fro VC++ Pin
Miszou14-Apr-03 11:12
Miszou14-Apr-03 11:12 
Generaloverriding functions Pin
ns14-Apr-03 8:45
ns14-Apr-03 8:45 
GeneralRe: overriding functions Pin
Chris Losinger14-Apr-03 9:04
professionalChris Losinger14-Apr-03 9:04 
GeneralRe: overriding functions Pin
ns14-Apr-03 9:12
ns14-Apr-03 9:12 

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.