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

C / C++ / MFC

 
AnswerRe: 2500 item in list control Pin
Michael Schubert21-Mar-09 2:09
Michael Schubert21-Mar-09 2:09 
GeneralRe: 2500 item in list control Pin
Cedric Moonen21-Mar-09 2:12
Cedric Moonen21-Mar-09 2:12 
GeneralRe: 2500 item in list control Pin
VCProgrammer21-Mar-09 2:20
VCProgrammer21-Mar-09 2:20 
GeneralRe: 2500 item in list control Pin
Michael Schubert21-Mar-09 2:51
Michael Schubert21-Mar-09 2:51 
GeneralRe: 2500 item in list control Pin
Michael Schubert21-Mar-09 2:23
Michael Schubert21-Mar-09 2:23 
AnswerRe: 2500 item in list control Pin
followait21-Mar-09 2:35
followait21-Mar-09 2:35 
AnswerRe: 2500 item in list control Pin
Rajesh R Subramanian21-Mar-09 4:23
professionalRajesh R Subramanian21-Mar-09 4:23 
QuestionFailed to add precompiled header manually Pin
followait21-Mar-09 1:31
followait21-Mar-09 1:31 
AnswerRe: Failed to add precompiled header manually Pin
norish21-Mar-09 2:03
norish21-Mar-09 2:03 
GeneralRe: Failed to add precompiled header manually Pin
followait21-Mar-09 2:27
followait21-Mar-09 2:27 
QuestionDrawing dots and checking coordinates Pin
mass8521-Mar-09 0:45
mass8521-Mar-09 0:45 
AnswerRe: Drawing dots and checking coordinates Pin
Cedric Moonen21-Mar-09 1:04
Cedric Moonen21-Mar-09 1:04 
GeneralRe: Drawing dots and checking coordinates Pin
mass8521-Mar-09 1:27
mass8521-Mar-09 1:27 
GeneralRe: Drawing dots and checking coordinates Pin
Cedric Moonen21-Mar-09 2:11
Cedric Moonen21-Mar-09 2:11 
GeneralRe: Drawing dots and checking coordinates Pin
mass8521-Mar-09 2:23
mass8521-Mar-09 2:23 
QuestionRe: Drawing dots and checking coordinates Pin
mass8523-Mar-09 2:02
mass8523-Mar-09 2:02 
QuestionRemoveDirectoryW() Pin
p_196021-Mar-09 0:39
p_196021-Mar-09 0:39 
AnswerRe: RemoveDirectoryW() Pin
Michael Schubert21-Mar-09 1:17
Michael Schubert21-Mar-09 1:17 
GeneralRe: RemoveDirectoryW() Pin
p_196021-Mar-09 1:27
p_196021-Mar-09 1:27 
GeneralRe: RemoveDirectoryW() Pin
Michael Schubert21-Mar-09 1:39
Michael Schubert21-Mar-09 1:39 
AnswerRe: RemoveDirectoryW() Pin
Dominik Reichl21-Mar-09 1:33
Dominik Reichl21-Mar-09 1:33 
GeneralRe: RemoveDirectoryW() Pin
p_196021-Mar-09 1:46
p_196021-Mar-09 1:46 
GeneralRe: RemoveDirectoryW() Pin
Dominik Reichl21-Mar-09 1:53
Dominik Reichl21-Mar-09 1:53 
GeneralRe: RemoveDirectoryW() Pin
p_196021-Mar-09 2:04
p_196021-Mar-09 2:04 
GeneralRe: RemoveDirectoryW() Pin
Dominik Reichl21-Mar-09 2:13
Dominik Reichl21-Mar-09 2:13 
If you're compiling in Unicode mode, it's basically just the same:

CString strPath1 = _T("c:\\temp\\folder1\\");
LPCWSTR lpPath2 = L"testing\\tester";

CString strPath = strPath1 + lpPath2;

RemoveDirectoryW(strPath);



Too many passwords to remember? Try KeePass Password Safe!

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.