Click here to Skip to main content
15,896,118 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CreateControl Failed problem Pin
Rajesh R Subramanian21-May-08 18:47
professionalRajesh R Subramanian21-May-08 18:47 
GeneralRe: CreateControl Failed problem Pin
Cedric Moonen21-May-08 20:08
Cedric Moonen21-May-08 20:08 
GeneralRe: CreateControl Failed problem [modified] Pin
Rajesh R Subramanian21-May-08 20:10
professionalRajesh R Subramanian21-May-08 20:10 
GeneralRe: CreateControl Failed problem Pin
Cedric Moonen21-May-08 20:05
Cedric Moonen21-May-08 20:05 
QuestionUrgent Help C++,how to get the copied file origin Pin
feng.dl21-May-08 17:39
feng.dl21-May-08 17:39 
AnswerRe: Urgent Help C++,how to get the copied file origin Pin
Ashutosh Shashi21-May-08 19:01
Ashutosh Shashi21-May-08 19:01 
GeneralRe: Urgent Help C++,how to get the copied file origin Pin
feng.dl21-May-08 19:53
feng.dl21-May-08 19:53 
AnswerRe: Urgent Help C++,how to get the copied file origin Pin
Ashutosh Shashi21-May-08 19:08
Ashutosh Shashi21-May-08 19:08 
You Can Use this in another way like--

For example, if you wanted to copy the folder 'c:\windows\Ashu' to 'c:\Ashu':

SHFILEOPSTRUCT fileop;
fileop.hwnd = NULL;
fileop.wFunc = FO_COPY;
fileop.pFrom = "C:\\windows\\Ashu\0"; // additional null needed
fileop.pTo = "c:\\Ashu\0"; // additional null needed
fileop.fFlags = FOF_ALLOWUNDO|FOF_NOCONFIRMATION|FOF_NOCONFIRMMKDIR;
if (!SHFileOperation(&fileop)); // error condition

Try This..................
GeneralRe: Urgent Help C++,how to get the copied file origin Pin
feng.dl21-May-08 19:24
feng.dl21-May-08 19:24 
AnswerRe: Urgent Help C++,how to get the copied file origin Pin
feng.dl21-May-08 19:38
feng.dl21-May-08 19:38 
AnswerRe: Urgent Help C++,how to get the copied file origin Pin
David Crow22-May-08 4:28
David Crow22-May-08 4:28 
QuestionPPERF_DATA_BLOCK Question Pin
monsieur_jj21-May-08 16:57
monsieur_jj21-May-08 16:57 
AnswerRe: PPERF_DATA_BLOCK Question Pin
Hamid_RT21-May-08 17:55
Hamid_RT21-May-08 17:55 
GeneralRe: PPERF_DATA_BLOCK Question Pin
monsieur_jj21-May-08 19:08
monsieur_jj21-May-08 19:08 
GeneralRe: PPERF_DATA_BLOCK Question Pin
Hamid_RT21-May-08 20:56
Hamid_RT21-May-08 20:56 
GeneralRe: PPERF_DATA_BLOCK Question Pin
HES082717-Aug-10 15:13
HES082717-Aug-10 15:13 
Questionhow to change the background color of a checkbox in a list control? Pin
tataxin21-May-08 14:48
tataxin21-May-08 14:48 
AnswerRe: how to change the background color of a checkbox in a list control? Pin
Hamid_RT21-May-08 18:02
Hamid_RT21-May-08 18:02 
GeneralRe: how to change the background color of a checkbox in a list control? Pin
tataxin21-May-08 20:32
tataxin21-May-08 20:32 
GeneralRe: how to change the background color of a checkbox in a list control? Pin
tataxin22-May-08 3:12
tataxin22-May-08 3:12 
GeneralRe: how to change the background color of a checkbox in a list control? Pin
Hamid_RT22-May-08 22:48
Hamid_RT22-May-08 22:48 
GeneralRe: how to change the background color of a checkbox in a list control? Pin
tataxin23-May-08 2:40
tataxin23-May-08 2:40 
AnswerRe: how to change the background color of a checkbox in a list control? Pin
tataxin26-May-08 19:32
tataxin26-May-08 19:32 
QuestionDumb Question Pin
bs197721-May-08 14:21
bs197721-May-08 14:21 
QuestionPut array of characters into an array member of a class Pin
Samjiman21-May-08 12:35
Samjiman21-May-08 12:35 

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.