Click here to Skip to main content
15,915,867 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How can i get dynamic URL? Pin
sumit.durg4-Jun-08 3:12
sumit.durg4-Jun-08 3:12 
QuestionRemove the file in use Pin
mihai1234-Jun-08 1:35
mihai1234-Jun-08 1:35 
AnswerRe: Remove the file in use Pin
Michael Schubert4-Jun-08 1:54
Michael Schubert4-Jun-08 1:54 
QuestionRe: Remove the file in use Pin
CPallini4-Jun-08 1:56
mveCPallini4-Jun-08 1:56 
AnswerRe: Remove the file in use Pin
Hamid_RT4-Jun-08 21:10
Hamid_RT4-Jun-08 21:10 
GeneralRe: Remove the file in use Pin
mihai1234-Jun-08 21:16
mihai1234-Jun-08 21:16 
GeneralRe: Remove the file in use Pin
Hamid_RT4-Jun-08 21:32
Hamid_RT4-Jun-08 21:32 
GeneralRe: Remove the file in use Pin
mihai1234-Jun-08 21:43
mihai1234-Jun-08 21:43 
I used this to erased a folder and it works

SHFILEOPSTRUCT op;
op.pFrom = szStoreFolder;
//op.pTo = _T("");		//will be ignored
op.wFunc = FO_DELETE;
op.fFlags = FOF_SILENT | FOF_NOCONFIRMATION;
op.fAnyOperationsAborted = false;
op.hNameMappings = NULL;
SHFileOperation(&op);


only if you do not have the files in that folder in used...
if you have that you should FindClose(handleFile) if you used previous a function that searched for file in that folder
QuestionBitBlt is failing Pin
subramanyeswari4-Jun-08 1:06
subramanyeswari4-Jun-08 1:06 
AnswerRe: BitBlt is failing Pin
CPallini4-Jun-08 1:46
mveCPallini4-Jun-08 1:46 
GeneralRe: BitBlt is failing Pin
subramanyeswari4-Jun-08 1:51
subramanyeswari4-Jun-08 1:51 
GeneralRe: BitBlt is failing Pin
CPallini4-Jun-08 1:58
mveCPallini4-Jun-08 1:58 
GeneralRe: BitBlt is failing Pin
subramanyeswari4-Jun-08 2:04
subramanyeswari4-Jun-08 2:04 
GeneralRe: BitBlt is failing Pin
CPallini4-Jun-08 2:08
mveCPallini4-Jun-08 2:08 
GeneralRe: BitBlt is failing Pin
subramanyeswari4-Jun-08 2:15
subramanyeswari4-Jun-08 2:15 
QuestionRe: BitBlt is failing Pin
CPallini4-Jun-08 2:29
mveCPallini4-Jun-08 2:29 
AnswerRe: BitBlt is failing Pin
subramanyeswari4-Jun-08 2:39
subramanyeswari4-Jun-08 2:39 
GeneralRe: BitBlt is failing Pin
CPallini4-Jun-08 2:59
mveCPallini4-Jun-08 2:59 
JokeRe: BitBlt is failing Pin
Nelek4-Jun-08 7:21
protectorNelek4-Jun-08 7:21 
GeneralRe: BitBlt is failing Pin
CPallini4-Jun-08 8:02
mveCPallini4-Jun-08 8:02 
QuestionSending Device Context Through Shared Memory? Pin
Llasus4-Jun-08 0:05
Llasus4-Jun-08 0:05 
AnswerRe: Sending Device Context Through Shared Memory? Pin
Cedric Moonen4-Jun-08 1:03
Cedric Moonen4-Jun-08 1:03 
GeneralRe: Sending Device Context Through Shared Memory? Pin
Llasus4-Jun-08 1:15
Llasus4-Jun-08 1:15 
Questionhow to calculate mean of histogram? Pin
traelektro3-Jun-08 23:38
traelektro3-Jun-08 23:38 
AnswerRe: how to calculate mean of histogram? Pin
Hamid_RT4-Jun-08 21:10
Hamid_RT4-Jun-08 21:10 

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.