How to Wipe/Clean Internet Explorer temporary internet Files, Cookies, History, Cache using C++/VC++/MFC
-
How to Wipe/Clean Internet Explorer's temporary internet Files, Cookies, History, Cache using C++/VC++/MFC
-
How to Wipe/Clean Internet Explorer's temporary internet Files, Cookies, History, Cache using C++/VC++/MFC
you can check this project Disk Cleaner[^]
-
you can check this project Disk Cleaner[^]
i need C++/VC++/MFC Code to wipe/clean Internet Explorer temporary internet Files, Cookies, History, Cache
-
i need C++/VC++/MFC Code to wipe/clean Internet Explorer temporary internet Files, Cookies, History, Cache
The open source project that you were given a link to, does just that.
It is a crappy thing, but it's life -^ Carlo Pallini
-
The open source project that you were given a link to, does just that.
It is a crappy thing, but it's life -^ Carlo Pallini
i am tring to develop one my own so i need a source code
-
i am tring to develop one my own so i need a source code
Shiv Murti Pal wrote:
i need a source code
Are you a parrot or are you just really dense?
-
Shiv Murti Pal wrote:
i need a source code
Are you a parrot or are you just really dense?
abe u r parrot and dence
-
abe u r parrot and dence
Shiv Murti Pal wrote:
abe u r parrot and dence
Is this some obfuscated form of pidgin?
-
abe u r parrot and dence
Shiv Murti Pal wrote:
abe u r parrot and dence
Nooooooooooooooooo! I am a parrot and I dance :laugh: Though you must give me enough beer to see that happen! :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
How to Wipe/Clean Internet Explorer's temporary internet Files, Cookies, History, Cache using C++/VC++/MFC
Shiv Murti Pal wrote:
How to Wipe/Clean Internet Explorer's temporary internet Files, Cookies, History, Cache using C++/VC++/MFC
By using
DeleteFile()
."Old age is like a bank account. You withdraw later in life what you have deposited along the way." - Unknown
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
-
How to Wipe/Clean Internet Explorer's temporary internet Files, Cookies, History, Cache using C++/VC++/MFC
-
I recommend using the IUrlHistoryStg2::ClearHistory Method[^] Best Wishes, -David Delaune
-
No. The official way is with Internal Shell apis (Explorer does that) (8 lines of code )
kilt wrote:
(8 lines of code )
Here are my 7 lines.
IUrlHistoryStg2* pIHist = NULL; HRESULT hr = CoCreateInstance(CLSID_CUrlHistory,NULL, CLSCTX_INPROC, IID_IUrlHistoryStg2,(void**)&pIHist); if (SUCCEEDED(hr)) { hr = pIHist->ClearHistory(); pIHist->Release(); }
Best Wishes, -David Delaune