Click here to Skip to main content
15,899,754 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Any beginner's SDK tutorials? Pin
achainard5-Nov-08 3:47
achainard5-Nov-08 3:47 
AnswerRe: Any beginner's SDK tutorials? Pin
SandipG 5-Nov-08 4:01
SandipG 5-Nov-08 4:01 
AnswerRe: Any beginner's SDK tutorials? Pin
Megidolaon6-Nov-08 7:06
Megidolaon6-Nov-08 7:06 
QuestionCalls to windows API is failing for directory created by same process [modified] Pin
Aseem Sharma5-Nov-08 2:34
Aseem Sharma5-Nov-08 2:34 
GeneralRe: Calls to windows API is failing for directory created by same process Pin
led mike5-Nov-08 4:16
led mike5-Nov-08 4:16 
GeneralRe: Calls to windows API is failing for directory created by same process Pin
Aseem Sharma5-Nov-08 20:45
Aseem Sharma5-Nov-08 20:45 
GeneralRe: Calls to windows API is failing for directory created by same process Pin
led mike6-Nov-08 5:34
led mike6-Nov-08 5:34 
GeneralRe: Calls to windows API is failing for directory created by same process Pin
Aseem Sharma6-Nov-08 19:13
Aseem Sharma6-Nov-08 19:13 
I did try to use the below code segment to rename, but even this fails too.

SHFILEOPSTRUCT objSHFILEOPSTRUCT;
memset(&objSHFILEOPSTRUCT, 0, sizeof(objSHFILEOPSTRUCT));
objSHFILEOPSTRUCT.wFunc = FO_RENAME;
objSHFILEOPSTRUCT.pFrom = "C:\\MyDir\\MyFile";
objSHFILEOPSTRUCT.pTo = "C:\\MyDir\\YourFile";
objSHFILEOPSTRUCT.fFlags = FOF_NOCONFIRMATION|FOF_SILENT;
int eeeeee = SHFileOperation(&objSHFILEOPSTRUCT);

I think, if we get handle of a folder, it put some restrictions on content inside it. I could not move/copy files inside that folder.
QuestionCFileDialog problem in MFC REGULAR DLL [modified] Pin
W.Kim 19875-Nov-08 2:32
W.Kim 19875-Nov-08 2:32 
QuestionRe: CFileDialog problem in MFC EXT DLL Pin
Mark Salsbery5-Nov-08 4:40
Mark Salsbery5-Nov-08 4:40 
AnswerRe: CFileDialog problem in MFC EXT DLL Pin
W.Kim 19875-Nov-08 17:34
W.Kim 19875-Nov-08 17:34 
GeneralRe: CFileDialog problem in MFC EXT DLL Pin
Mark Salsbery6-Nov-08 15:03
Mark Salsbery6-Nov-08 15:03 
GeneralRe: CFileDialog problem in MFC EXT DLL Pin
W.Kim 19878-Nov-08 1:15
W.Kim 19878-Nov-08 1:15 
Question3D array Pin
kDevloper4-Nov-08 23:48
kDevloper4-Nov-08 23:48 
AnswerRe: 3D array Pin
Iain Clarke, Warrior Programmer4-Nov-08 23:56
Iain Clarke, Warrior Programmer4-Nov-08 23:56 
GeneralRe: 3D array Pin
kDevloper5-Nov-08 0:00
kDevloper5-Nov-08 0:00 
GeneralNah! Pin
CPallini5-Nov-08 0:14
mveCPallini5-Nov-08 0:14 
GeneralRe: Nah! Pin
kDevloper5-Nov-08 0:33
kDevloper5-Nov-08 0:33 
GeneralRe: Nah! Pin
CPallini5-Nov-08 0:41
mveCPallini5-Nov-08 0:41 
GeneralRe: Nah! Pin
kDevloper5-Nov-08 0:51
kDevloper5-Nov-08 0:51 
JokeRe: Nah! Pin
Rajesh R Subramanian5-Nov-08 2:11
professionalRajesh R Subramanian5-Nov-08 2:11 
GeneralRe: Nah! Pin
CPallini5-Nov-08 2:51
mveCPallini5-Nov-08 2:51 
JokeRe: Nah! Pin
Iain Clarke, Warrior Programmer5-Nov-08 0:45
Iain Clarke, Warrior Programmer5-Nov-08 0:45 
GeneralRe: Nah! Pin
CPallini5-Nov-08 0:58
mveCPallini5-Nov-08 0:58 
QuestionRegistry Vs Ini Pin
anna mathew4-Nov-08 23:33
anna mathew4-Nov-08 23:33 

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.