0
votes
1answer
52 views

COM - Implementing DllGetClassObject

I am attempting to understand creating/using COM components without the help of MFC/ATL to know its inner workings. I am using this codeguru article for reference.Following are the steps followed by ...
0
votes
1answer
67 views

Properly closing window created on a separate thread using ATL

I have a multithreaded application and on certain threads, I'm creating windows using ATL's CWindowImpl<>. I have a static method that I'm using as the thread procedure. I need to create a ...
0
votes
1answer
54 views

Should I call CoInitialize in timer callback

I have a single thread program which start with CoInitializeEx(NULL, COINIT_APARTMENTTHREADED) I use COINIT_APARTMENTTHREADED, because some functions (ex. URLDownloadToFile) didn't work properly ...
0
votes
0answers
38 views

COM marshalling gone wild

I have a really weird problem in a customer environment - I have an exe that calls 3 or 4 in-proc COM objects (dlls). These dlls also call each other and the main exe (through COM events). This ...
3
votes
1answer
94 views

Programmatically specify which version of .NET to load

My application is a native, non-.NET application. However, at times it may need to invoke some .NET services through COM. Sometimes it needs to load a specific version of .NET to accomplish what it ...
0
votes
0answers
43 views

Forcing a dialog to come to foreground or on the top

I am using COM API to do some calculation and therefore i make a method call with the help of interface and this method internally itself displays the dialog box which contains the computation result ...
0
votes
1answer
81 views

Python Pywin & OneNote COM: OneNote.Application.15 'cannot automate the makepy process'

I'm interacting with OneNote's COM interop using Python on Win32. Here's the most basic code to pull out notebook hierarchy: import win32com.client onObj = ...
1
vote
1answer
67 views

Can't get IViewObject::Draw To Work

I need to implement a screen capturing service (C++), that fires up ie navigates to a site and then takes a grab of the site. I loaded the site and have received the DISPID_FRAMENAVIGATECOMPLETE ...
0
votes
1answer
40 views

Monitor/Determine when a com object is used

I wonder if any one can help me with this.. What I want to do is to put some type of trigger on a COM object, whenever this object is created/loaded and used, I want to create a log. I am fairly ...
0
votes
0answers
76 views

Is there any way to do Interactive Service in Windows 7 (Python)?

I've been able to create a windows service using Python and following this tutorial: http://ryrobes.com/python/running-python-scripts-as-a-windows-service/ However I tried to implement a script in ...
0
votes
2answers
79 views

C++ Accessing another classes public member

I have a COM object. In the main class I made two public members. public: HANDLE m_hVoiceData; void* m_pVoiceData; They are for mapping a file. I map the ...
1
vote
0answers
72 views

How to dynamically linking sapi.dll and making it work?

I would like to dynamically bind into windows sapi.dll and then call some code needed to 'speak' some text on windows - some code like this below (this snippet is copied from gamedev.net article by ...
1
vote
1answer
66 views

What's the purpose of the Direct3D import libraries? [closed]

From my understand those libraries are typically linked with explicit run-time linking (LoadLibrary), yet there are still those import libraries which contains descriptors to a small subset of the ...
0
votes
0answers
65 views

embed rich HTML editor to WinApi application

I'm look for rich edit component, that i can embed to pure WinApi application. Component should generate XHTML code, or good HTML (better). Editor should get formatting on copy-paste from Word and ...
7
votes
2answers
82 views

Determine whether a COM is a In-Proc or LocalServer

I got an application that use a COM library, just wondering how can I know whether that application use that COM library as a LocalServer or In-Proc? I looked at the code being constructed in this ...
1
vote
1answer
131 views

How to use CoInitializeEx with ShellExecuteEx

I am using the WinAPI function ShellExecuteEx() to open a folder in Windows Explorer. According to MSDN I should always call CoInitializeEx() prior to using ShellExecuteEx() but what flags should I ...
0
votes
0answers
131 views

Win32 COM object consumed in a thread in C#

We have a Win32 COM object developed in Delphi XE. From our test program developed in Delphi we're able to start the COM object in a thread. When debugging we can see that the running COM object is ...
0
votes
0answers
74 views

Error when trying to run Excel-Solver from Python over com / pywin32

I am trying to run Excels Solver add-in via pywin32 in python with: import win32com.client from win32com.client import constants as c app = Dispatch("Excel.Application") app.Visible = True ...
0
votes
1answer
171 views

C++ Builder 2009 - How to Determine if Control's Window is Visible

I have a TWinControl and am trying to determine if the parent window is visible. I see TWinControl has a property of ParentWindow. The return type of ParentWindow is void *. So I'm curious if I must ...
0
votes
0answers
68 views

Deadlock when adding COM GUI component to HWND of other process (Firefox, Plugin, IExplorerBrowser)

I am trying to embed an IExplorerBrowser (the main GUI of Windows Explorer) into a Firefox XUL or HTML page. The instance of IExploerBrowser is created using js-ctypes in the Firefox-process ( with ...
2
votes
0answers
103 views

How do I determine the host application of a pressed key using a global hook?

I'm interested in keyboard listening in the context of a particular application, like Microsoft Word. Googling showed that the only way to solve this problem is to use a global keyboard hook. A ...
1
vote
1answer
43 views

How to make COM DoDragAndDrop API be touch sensitive on Windows 7/8?

On Windows, the drag and drop action can be done via COM DoDragAndDrop API, see http://msdn.microsoft.com/zh-cn/library/windows/desktop/ms678486%28v=vs.85%29.aspx. It can perform D&D operation ...
0
votes
1answer
71 views

WindowInteropHelper.Handle - do i need to release it?

In WPF I'm getting IntPtr handle using this code: IntPtr mainWindowHandle = new WindowInteropHelper(Application.Current.MainWindow).Handle When I finish using this handle, do I need to release it ...
0
votes
0answers
55 views

Tracking IOleInPlaceActiveObject Focus

I wish to host IE/mshtml in my app and I want to forward keyboard accelerators to my own implementation when the IE window has focus. I doubt this is an uncommon use case but I'm struggling to find ...
0
votes
1answer
59 views

Create PCIDLIST_ABSOLUTE_ARRAY for IShellItemArray

I have to call IApplicationActivationManager::ActivateForProtocol for opening a Windows 8 app, therefore I have to provide IShellItemArray* data. Basically, I just want to create a new ...
1
vote
0answers
128 views

Problems with scheduled task using ITaskScheduler, ITask interfaces

The code below executes without any error, but task didn't executed and I didn't see it in control panel . Please help HRESULT CreateOnceActionTask(const wchar_t* taskName, const wchar_t* ...
0
votes
1answer
58 views

Handling the hook function

I'm trying to use EasyHook in C# to properly hook into a method from a COM object (unmanaged). I was able to determine the address of the method of the COM object and I can properly trigger my hook ...
0
votes
1answer
99 views

How to read WPD MTP data stream asynchronously?

My sample application gets a COM IStream instance from a IPortableDeviceResources::GetStream() function. I want to read the device object contents asynchronously using this IStream object. How can I ...
2
votes
2answers
140 views

Win32 COM Programming in Pure C

I have a programming project which requires access to some of the lower-level Windows APIs (WASAPI, in particular). I am fairly experienced with higher-level programming languages such as C#, Java, ...
1
vote
2answers
331 views

Convert OLECHAR* to CHAR* in order to build string()

I have a OLECHAR* and i want to convert it CHAR* in order to create string out of it, i didnt find a way of doing it. Is OLECHAR is a regular char ? didnt the idea of it. Thanks in advance, Gal.
0
votes
1answer
60 views

Missing icon when implementing IExplorerCommand

I'm trying to extend my NSE with a toolbar button, but the icon I specified is never shown. I return the icon location like shown in msdn. This example is doing it the same way. Here is the source: ...
0
votes
0answers
27 views

Detect processes which have a reference to a COM RunningObjectTable Object

Im trying to deny the access to a 3rd Party COM object which is registered as running on the Running Object Table for special processes.Is there a Way to restrict the access to an Object on the ROT ...
0
votes
0answers
144 views

Get a VBA object for an existing instance of Internet Explorer (without using shellwindows)

I'm trying to get an InternetExplorer or WebBrowser object from an hwnd in VBA. I've seen a lot of posts floating around the web stating either that this isn't possible, but I'm fairly convinced it ...
0
votes
1answer
67 views

Must BITS (Background Intelligent Transfer Services) use a STA?

I am using SharpBITS (http://sharpbits.codeplex.com/), a well running BITS wrapper for .NET. I am not quite sure but reckon that BITS must run in a Single Thread Apartment (STA). With older versions I ...
1
vote
2answers
62 views

Writing a executable (Win32) that registers for COM at startup and deregisters on termination

I have a desire to write a Win32 executable (in C++) that performs all of its COM registration at startup so that its object(s) are then accessible via COM to client apps. When the executable ...
0
votes
1answer
497 views

How can I retrieve error strings for DirectX 9

I want to retrieve error strings for DirectX 9, but I can find on the web is using the FormatMessage() and _com_error.ErrorMessage(), both of which fail me. hr = ...
1
vote
3answers
160 views

Do I need to use COM (component object module)

Few days back I started reading COM. Then one of my team member told that it is an old technology, now a days no one is using this. My question is: 1) If it is an old technology then what is the ...
0
votes
1answer
131 views

WPD MTP data stream hanging on Release

I've come across a weird problem when reading data from a MTP-compatible mobile device using the WPD (Windows Portable Devices) API, under Windows 8 (not tried any other Windows versions yet). The ...
4
votes
1answer
109 views

How do I capture a user's left-click in Windows Explorer?

From what I've read, a shell extension is invoked when a user right-clicks on a file in Windows Explorer. Is there a way to capture an event or run a shell extension when a user left-clicks on a file? ...
0
votes
0answers
192 views

Adding my own interface to a deskband

I'm using Visual Studio 2010 on Windows 7 SP1 x64. I need to make a custom deskband that communicates with a win32 application, compiled as 32bit app. I used this CodeProject article as a starting ...
1
vote
1answer
59 views

Seeking within different streams in DirectShow

In an application which I develop I play several layers of video using VMR9. The problem is that I need to be able to navigate within each video stream independently. Has anyone implemented something ...
2
votes
0answers
118 views

ITaskbarList3 hook or replacement

I'm trying to create a Windows 7 taskbar replacement. Builtin taskbar has some nice features which I'd like to reimplement, specifically a progress bar hosted in a taskbar button (ITaskbarList3). ...
1
vote
3answers
177 views

How can I read a fstream into an LPSAFEARRAY?

I'm trying to call a method on a managed dll in C++. One of the parameters is a byte array, which the library import translated to LPSAFEARRAY. The byte array/LPSAFEARRAY is intended to be the ...
3
votes
1answer
238 views

IShellDisptach: Why does FolderItemVerbs::Release() + CoUninitialize() crash?

I'm having a very bizarre problem with the IShellDispatch COM interface, more specifically with the FolderItemVerbs object, that drives me nuts! Calling FolderItemVerbs::Release() followed by ...
1
vote
2answers
438 views

Out-of-process COM server without a proxy/stub DLL?

I am learning how to implement an out-of-process COM server and came across this article. I can build it, and it runs fine, but where is the proxy/stub DLL? All I can see is the IDL file from which ...
-1
votes
1answer
84 views

Can a Windows application using only Win32 be certified for the Windows Store? [closed]

Can a Windows application be certified for the Windows Store if it ONLY uses the allowed Win32 subset and is written in plain C? Related
0
votes
0answers
61 views

Using IApplicationAssociationRegistration from a service

I'm having a problem using IApplicationAssociationRegistration to check the default email client. In the user context everything is fine, but from a service running in the system context the wrong ...
2
votes
3answers
684 views

Reusing the web browser control

I have a pure Win32 application (no MFC, etc.) to which I want to add a web browser control in a window. I know the basics of COM and can create a COM object for the browser using hr = ...
1
vote
0answers
74 views

Getting specific COM server instance

Say I have multiple .exe files that register COM IClassFactories for a certain IID through CoRegisterClassObject function and specify REGCLS_MULTI_SEPARATE flag in the flags parameter. Is there a way ...
1
vote
0answers
153 views

Load DLL with ShellServiceObjectDelayLoad

I found out that the ShellServiceObjectDelayLoad-Key in HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion can be used to run a DLL on logon. But when I add an Value with the CLSID the corresponding DLL ...

1 2 3 4 5