Tagged Questions
4
votes
3answers
103 views
How to provide image data for embedded web control in C++
In my C++ app I'm embedding (via COM) a web browser (Internet Explorer) control (CLSID_WebBrowser).
I can display my own html in that control by using IHTMLDocument2::write() method but if the html ...
2
votes
1answer
98 views
How to get the Last Active Date of a Process?
I have an assignment were in I have to print the last active date of the process using a COM In Proc Server in C++. I tried doing that with getProcessTimes() function, but that gives me an access ...
0
votes
1answer
70 views
Does Internet Explorer offer a function to BHOs for downloading files over HTTP?
A Browser Helper Plugin I'm writing at the moment (C++) needs a list of domains for its work.
This list must be updated weekly and is available as textfile over HTTP.
Does Internet Explorer offer a ...
0
votes
0answers
90 views
How to add Content Menu item when no file object is selection in file explorer
I have done some basic code when i am trying to extent the shell content menu under windows file explorer by python and pywin32. Now via IShellExtInit and IContextMenu, i can get the opportunity to ...
0
votes
0answers
99 views
Problem with drag and drop from certain apps
I am building a dropzone type window that should be able to get dragged objects from any application (like Windows does as you can drag anything on the desktop for example)
First problem is that I ...