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

C / C++ / MFC

 
GeneralRe: m_pRecentFileList... Pin
David Crow11-Mar-04 3:14
David Crow11-Mar-04 3:14 
GeneralMake underline on menu Pin
Member 80845910-Mar-04 19:10
Member 80845910-Mar-04 19:10 
GeneralRe: Make underline on menu Pin
Roger Allen11-Mar-04 0:49
Roger Allen11-Mar-04 0:49 
GeneralRe: Make underline on menu Pin
David Crow11-Mar-04 3:15
David Crow11-Mar-04 3:15 
GeneralUsing C# controls in MFC Dialog Pin
Jain Mohit10-Mar-04 18:47
Jain Mohit10-Mar-04 18:47 
QuestionHow to check a folder existed or not ? Pin
nguyen_nd10-Mar-04 18:05
nguyen_nd10-Mar-04 18:05 
AnswerRe: How to check a folder existed or not ? Pin
Ravi Bhavnani10-Mar-04 19:05
professionalRavi Bhavnani10-Mar-04 19:05 
AnswerRe: How to check a folder existed or not ? Pin
Prakash Nadar10-Mar-04 19:20
Prakash Nadar10-Mar-04 19:20 
You can do a simple check like this
use
GetFileAttributes(..) to get the attributes of the folder, if you receive valid values that means that directory exits, elese its not there.

BOOL CheckExistedFolder(CString strFolderName)
{
   if(GetFileAttributes(strFolderName) == INVALID_FILE_ATTRIBUTES)
   {
      return false;
   }
   else
   {
      return true;
   }
}



MSN Messenger.
prakashnadar@msn.com
GeneralRe: How to check a folder existed or not ? Pin
Blake Miller17-Mar-04 10:26
Blake Miller17-Mar-04 10:26 
AnswerRe: How to check a folder existed or not ? Pin
David Crow11-Mar-04 3:17
David Crow11-Mar-04 3:17 
GeneralVideo Capture and Streaming Pin
kukarthi10-Mar-04 17:39
kukarthi10-Mar-04 17:39 
GeneralRe: Video Capture and Streaming Pin
Anonymous30-May-04 17:09
Anonymous30-May-04 17:09 
QuestionHow to put the value to Registry as Multi String? Pin
.NetRams10-Mar-04 17:30
.NetRams10-Mar-04 17:30 
AnswerRe: How to put the value to Registry as Multi String? Pin
David Crow11-Mar-04 3:18
David Crow11-Mar-04 3:18 
QuestionHow to create a transparent checkbox on a image-background-dialog Pin
wallbio10-Mar-04 16:44
wallbio10-Mar-04 16:44 
GeneralOpenSSL and Win32 SSL API :: SSL/TLS Pin
valikac10-Mar-04 14:45
valikac10-Mar-04 14:45 
GeneralCustom Buttons in Title Bar Pin
Anonymous10-Mar-04 14:03
Anonymous10-Mar-04 14:03 
Generalnewbie needs help Pin
conticello10-Mar-04 12:42
conticello10-Mar-04 12:42 
GeneralRe: newbie needs help Pin
toxcct11-Mar-04 0:35
toxcct11-Mar-04 0:35 
GeneralRe: newbie needs help Pin
conticello11-Mar-04 1:42
conticello11-Mar-04 1:42 
GeneralRe: newbie needs help Pin
David Crow11-Mar-04 3:20
David Crow11-Mar-04 3:20 
GeneralImage arrangement Pin
Anonymous10-Mar-04 12:20
Anonymous10-Mar-04 12:20 
GeneralUsing SetFont and Trying to Display PI(the symbol) Pin
J Guds10-Mar-04 11:44
J Guds10-Mar-04 11:44 
GeneralRe: Using SetFont and Trying to Display PI(the symbol) Pin
Ellis Li10-Mar-04 20:18
Ellis Li10-Mar-04 20:18 
GeneralRe: Using SetFont and Trying to Display PI(the symbol) Pin
Ellis Li10-Mar-04 20:19
Ellis Li10-Mar-04 20:19 

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.