active questions tagged com - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:23:47Z http://stackoverflow.com/feeds/tag/com http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811425/c-ctor-cant-new-com-obj 0 C# Ctor Can't New Com Obj ? Nano HE 2009-11-28T03:12:06Z 2009-11-28T03:36:20Z <p>Hello all.</p> <p>I meet one strange issue.</p> <pre><code>Public Class MyClass { Public MyClass() { // Some time the New Com Obj code will crush in Construcor su.SUEvent += new _IaSystemMgrEvents_SuEventEventHandler(su_SuEvent); su.SUEventSteps += new _IaSystemMgrEvents_SuEventIemsEventHandler(su_SuEventSteps); su.SetHBCOMAddr();} public void Init() { // If i inserted the three lines code to Init() fun, it worked very well. su.SUEvent += new _IaSystemMgrEvents_SuEventEventHandler(su_SuEvent); su.SUEventSteps += new _IaSystemMgrEvents_SuEventIemsEventHandler&gt;(su_SuEventSteps); su.SetHBCOMAddr(); } } </code></pre> <p>su is a lib file from C++ Why i can't creat Com Obj in constructor in C#. </p> http://stackoverflow.com/questions/1302801/universal-document-converter-virtual-printing-com-server 0 Universal Document Converter - virtual printing COM server Stranger 2009-08-19T21:46:59Z 2009-11-28T03:00:03Z <p>Hi, We are using Universal Document Coverter with its virtual printing and COM server libraries. Can the COM server libraries be available for .MHT files? Thanks</p> http://stackoverflow.com/questions/1720442/how-to-get-the-displayed-webpage-source 0 How to get the Displayed Webpage source GrabIt 2009-11-12T07:08:36Z 2009-11-28T03:00:03Z <p>Hi,</p> <p>how can i get the web-page source displayed on a web-browser control, either in c# or Win32.even ATL COM also fine. i mean.. i dont want to create new "HTTPReqest" or "openURL" to get source.. i want to get the source from the control only..is it possible for windows mobile.. if so how?.. please let me know.</p> <p>Thank u</p> http://stackoverflow.com/questions/1795020/c-and-c-com-event-performance-help 0 C++ and C# COM Event Performance. Help. Nano HE 2009-11-25T06:25:31Z 2009-11-28T02:55:29Z <p>Hi All,</p> <p>Good day.</p> <p>CppApp and CsApp Event Handle Design Changed. For Industry application. </p> <p>Old design.</p> <p>CsApp pull event from CppApp. There are a lot of events from CppApp. So we created two threads in CsApp to handle the events from CppApp. It worked very well.</p> <p>New design.</p> <p>CsApp and CppApp com event (fire event method) design instead of the push/pull event method. Only one pointer in Cpp IDL file created, but it could still handle two fire events function, we didn't change the CppApp event related part code. That means One Com Event Channel between CppApp and CsApp now.</p> <p>Test Result. We tested and it on simulation mode and it worked very well. But there is not enough real machine online testing till now. Specially there where be a lot of event at industry online production envrionment.<br> We worry about if there is some Com Event Sending from CppApp to CsApp delay. </p> <p>Is there any resource which i could research about Com Event performance for industry application?</p> <p>Thanks a lot in advance here.</p> <p>BR! Nano </p> http://stackoverflow.com/questions/1645838/why-component-object-model-com-is-it-language-dependent 4 Why Component Object Model (COM)? Is it Language Dependent? claws 2009-10-29T18:57:57Z 2009-11-27T22:12:46Z <p>Hello,</p> <p>I'm new to COM. I started learning it. Frankly speaking, I hate it.</p> <p>I'm neither clear about what it is? no why it exists.</p> <p>Is this a programming methodology like OOP? Does programming languages must support it? (with some special keywords or something)</p> <p>When I asked my prof about it, He said:</p> <blockquote> <p>COM is a binary-stable way to do OOP. We need to know binary-layout (something..something..)</p> </blockquote> <p>I've no idea what it means. Some people say it is used for code reuse. OOP does good job at that. Then why did this COM evolve?</p> <p>What is it with C++ and COM? Where ever I see, COM is always described with abstract C++ examples. Is it only for C++?</p> <p>Can any one tell me a case so that I could realize the need for COM. </p> <p>Also can anyone tell me what are the requirements for learning this to write my own components?</p> http://stackoverflow.com/questions/1804130/problem-interfacing-c-pos-controls-with-the-net-pos-sdk 0 Problem interfacing C++ POS controls with the .NET POS SDK Scottf007 2009-11-26T14:52:27Z 2009-11-27T13:58:59Z <p>We're trying implement a .NET Service Object that supports a COM interface to emulate a POSPrinter but still be compatible with the older technologies. </p> <p>We have our interface and class object in the following class.. </p> <pre><code>using [...] namespace yRPOSPrinterDotNet { [Guid("2D570F11-4BD8-40e7-BF14-38772063AAF0")] [InterfaceType(ComInterfaceType.InterfaceIsDual)] public interface yRPosPrinterCOM { long Open(String DeviceName); long PrintNormal(long Station, String Data); } [Guid("478176F4-5105-435c-8EBC-D4CB90B7B1C7")] [ClassInterface(ClassInterfaceType.None)] //[ProgId("yRPOSPrinterDotNet.POSPrinter")] //will be set automatically as the progid &lt;namespace&gt;&lt;clsid&gt; public class POSPrinter : yRPosPrinterCOM { #region yRPosPrinterCOM Members public long Open() { return 0; } public long Open(String DeviceName) { Trace.Listeners.Add(new TextWriterTraceListener(Console.Out)); FileStream objStream = new FileStream("C:\\yRPOSLog.txt", FileMode.OpenOrCreate); TextWriterTraceListener objTraceListener = new TextWriterTraceListener(objStream); Trace.Listeners.Add(objTraceListener); Trace.AutoFlush = true; Trace.Indent(); Trace.WriteLine("Entering Main"); Debug.WriteLine("How does this one do??"); Console.WriteLine("Hello World."); Trace.WriteLine("Exiting Main"); Trace.Unindent(); return 0; } public long PrintNormal(long Station, string Data) { throw new NotImplementedException(); } #endregion } } </code></pre> <p>And put inside <code>HKEY_LOCAL_MACHINE\SOFTWARE\OLEforRetail\ServiceOPOS\POSPrinter\yReceipts</code> our ProgID of yRPosPrinterDotNet.POSPrinter</p> <p><code>HKEY_CLASSES_ROOT\CLSID\{478176F4-5105-435C-8EBC-D4CB90B7B1C7}</code> has our ProgID correctly after building (yRPosPrinterDotNet.POSPrinter)</p> <p>We can call the DLL through a test class as follow (finding the ProgID) using this class</p> <pre><code>using [...] namespace TestYRPosPrinterDotNet { /// &lt;summary&gt; /// Summary description for UnitTest1 /// &lt;/summary&gt; [TestClass] public class UnitTest1 { public UnitTest1() { } private TestContext testContextInstance; /// &lt;summary&gt; ///Gets or sets the test context which provides ///information about and functionality for the current test run. ///&lt;/summary&gt; public TestContext TestContext { get { return testContextInstance; } set { testContextInstance = value; } } [TestMethod] public void TestMethod1() { String sProgID = "yRPosPrinterDotNet.POSPrinter"; // We get the type using just the ProgID Type oType = Type.GetTypeFromProgID(sProgID); if (oType != null) { POSPrinter pp = (POSPrinter)Activator.CreateInstance(oType); long retVal = pp.Open("Nothing"); } } } } </code></pre> <p>But when we try calling through sample TestApp (it does show up as a serviceObject) </p> <pre><code>{"Method Open threw an exception. The service object does not support one or more of the methods required by its release."} System.Exception {Microsoft.PointOfService.PosControlException} </code></pre> <p>Through a Sample C++ Control Object we receive a 104 defined in opos.h as <code>(const LONG OPOS_E_NOSERVICE = 4 + OPOSERR;)</code> with the following stack trace </p> <pre><code>----------------------------------- Doesn't work -------------------------------------------------------- POSPrinterExample.exe!COleDispatchDriver::InvokeHelperV(long dwDispID=37, unsigned short wFlags=1, unsigned short vtRet=3, void * pvRet=0x0012f1e0, const unsigned char * pbParamInfo=0x00702014, char * argList=0x0012f110) Line 397 C++ POSPrinterExample.exe!COleControlSite::InvokeHelperV(long dwDispID=37, unsigned short wFlags=1, unsigned short vtRet=3, void * pvRet=0x0012f1e0, const unsigned char * pbParamInfo=0x00702014, char * argList=0x0012f10c) Line 1093 C++ POSPrinterExample.exe!CWnd::InvokeHelper(long dwDispID=37, unsigned short wFlags=1, unsigned short vtRet=3, void * pvRet=0x0012f1e0, const unsigned char * pbParamInfo=0x00702014, ...) Line 382 C++ POSPrinterExample.exe!COPOSPOSPrinter::Open(const char * DeviceName=0x00271f00) Line 192 + 0x1c bytes C++ </code></pre> http://stackoverflow.com/questions/1803863/how-to-get-the-current-logged-on-user-including-domain-in-delphi-2009 1 How to get the current logged on user, including domain in Delphi 2009? Steve 2009-11-26T14:08:30Z 2009-11-27T12:41:25Z <p>I need to get the current logged on username? I need this to work properly when I call the code from ASP.NET which is working in Windows Authentication mode. i.e. I do not want to get the ASPNET user in that circumstance, but the impersonated user. This is related to my earlier <a href="http://stackoverflow.com/questions/1797814/windows-authentication-in-a-com-object-called-from-asp-net">question</a>. Everything I try returns <strong>ASPNET</strong>.</p> http://stackoverflow.com/questions/1791447/copying-between-variant-and-variantt 1 Copying between VARIANT and _variant_t John 2009-11-24T17:00:57Z 2009-11-27T12:33:02Z <p>I'm fairly certain that I can safely do:</p> <pre><code>void funcA(VARIANT &amp;V,_variant_t &amp;vt) { vt = V; } </code></pre> <p>But what about the other way around:</p> <pre><code>void funcB(VARIANT &amp;V,_variant_t &amp;vt) { V = vt; } </code></pre> <p>I've been seeing some REALLY weird behaviour in my app which I put down to COM-related threading issues. But then I got wondering if I was screwing up memory using variants wrongly. In funcB, the VARIANT V is part of a safe-array being prepared for a COM call. With my V=vt line, am I doing a shallow copy which will break things when the same variant gets deallocated twice?</p> <p>I really like _variant_t and avoiding all the ::VariantXXX methods, is there a neat way to use _variant_t in funcB to automate the copying?</p> http://stackoverflow.com/questions/1807743/how-do-i-register-a-proxy-stub-for-a-com-interface-defined-by-a-third-party 0 How do I register a proxy/stub for a COM interface defined by a third party? sharptooth 2009-11-27T09:46:22Z 2009-11-27T09:46:22Z <p>There's Another Company that ships the product that consumes IAnotherCompanyInterface. We want to ship a COM object that implements IAnotherCompanyInterface. That interface is not Automation-compatible, so the next easiest option to enable marshalling is using a proxy/stub. Another Company doesn't ship the proxy/stub and doesn't want to.</p> <p>Compiling and registering the proxy/stub is not a problem by itself but consider the following situation. There's our company shipping a COM object implementing IAnotherCompanyInterface and the ThirdPartyCompany that does the same. So both components might end up being deployed on the same machine.</p> <p>Proxy/stub registration is system-wide for an interface. How should their proxy/stub implementations co-reside?</p> http://stackoverflow.com/questions/1793102/getting-com-exception-80040154-on-different-machine 0 Getting COM Exception 80040154 on different machine abc 2009-11-24T21:40:21Z 2009-11-27T08:48:48Z <p>Hi All, I am getting following problem, can someone help please? I used Tlbimp utility and converted VB6 COM DLL into RCW DLL. From my Visual Studio 2008, I used "Add Reference" and used that DLL in c# class. Everything works fine on my machine. But if someone else use the same project on his/her machine then on that machine they get following error: "Retrieving the COM class factory for component with CLSID {x} failed due to the following error 80040154". I tried to search for that CLSID GUID on that machine but couldn't find under HKCR/CLSID location.</p> <p>Does anyone has clue/idea why its giving problem on different machine and what I can try to resolve this problem?</p> <p>Thanks.</p> http://stackoverflow.com/questions/1774952/accessviolationexception-in-com-control-in-net-app 0 AccessViolationException in COM control in .NET app Krzysztof Koźmic 2009-11-21T08:39:03Z 2009-11-27T06:26:47Z <p>I'm working for a client that has a VB6 app in the migration process to .NET.</p> <p>Currently they have a .NET shell, but host some old VB6 controls in .NET. There's an error I stumbled upon is logs that happens when they in .NET asynchronously pull some data from the database, and then forward that data to a COM component to display it:</p> <pre><code>The Undo operation encountered a context that is different from what was applied in the corresponding Set operation. The possible cause is that a context was Set on the thread and not reverted(undone). Err Source: mscorlib Err Type: System.InvalidOperationException ERROR stack trace: at System.Threading.SynchronizationContextSwitcher.Undo() at System.Threading.ExecutionContextSwitcher.Undo() at System.Threading.ExecutionContext.runFinallyCode(Object userData, Boolean exceptionThrown) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteBackoutCodeHelper(Object backoutCode, Object userData, Boolean exceptionThrown) at System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode code, CleanupCode backoutCode, Object userData) at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) at System.Windows.Forms.Control.InvokeMarshaledCallback(ThreadMethodEntry tme) at System.Windows.Forms.Control.InvokeMarshaledCallbacks() </code></pre> <p>then the following shows up in the logs:</p> <pre><code>Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Err Source: mscorlib Err Type: System.AccessViolationException ERROR stack trace: at System.RuntimeType.ForwardCallToInvokeMember(String memberName, BindingFlags flags, Object target, Int32[] aWrapperTypes, MessageData&amp; msgData) at _Client's component that forwards calls to COM_ </code></pre> <p>Did anyone ever encounter something like this? How do I approach fixing it?</p> http://stackoverflow.com/questions/747894/iis-web-service-calling-com-dll-that-needs-to-access-a-unix-file-share 0 IIS Web Service calling COM dll that needs to access a unix file share iancgood 2009-04-14T14:35:10Z 2009-11-26T20:00:08Z <p>We have a web service that uses COM to talk to some DLLs. The data files that the DLL functions rely on are on a unix share, and we must specify the data file location when initializing the COM calls. We have installed SFU 3.5 on our Windows Server 2003 server. We can't use a mapped drive because IIS is running as a service (or can we?). Using UNC doesn't seem to work either: As a logged in user, it fails the first time you enter the location, and then works. I don't know how to test it from the IIS perspective, as all we're getting from the DLL is an 'Invalid data file location' error. The unix share is open [no user/password required]. </p> <p>Perhaps the problem isn't with IIS at all, but rather the DLLs have to access to the UNC or mapped drive? After all, it is the DLL that actually accesses the data files, not IIS or the web service executable. </p> <p>I know very little about COM, DCOM, COM+. Pulling up Component Services, I can't find the COM objects we are using. [But I can find them using the MS OLEVIEW under 'Automation Objects'].</p> <p>What are my options here?</p> http://stackoverflow.com/questions/1563051/c-hook-into-existing-com-object 1 C# - Hook into existing COM object Jonathan.Peppers 2009-10-13T21:38:19Z 2009-11-26T17:05:18Z <p>Say we have an existing process (or application) that calls a COM object from an ocx file such as "MyCOMLibrary.ocx".</p> <p>Is there a way to write a C# library to exactly replicate the ocx file? So that the original application can call your C# code rather than the original COM object?</p> <p>You would, of course, have to use identical CLSID and ProgIDs as the original ocx. And assuming there is no signing involved, such as a SNK in the .Net world.</p> <p>Also, are there any tools that exist to automate this? Something that takes in an ocx and spits out a C# file with methods to implement.</p> <p>EDIT: I want to add that the original application is VB6, and does not use .Net at all. They are most likely loading the ocx as a VB6 app would (ProgId or Guid). Does this cause any issues?</p> <p>We also have no problem with completely rewriting the ocx--we will most likely just return success error codes for all methods and only use methods/events required by our situation.</p> <p>EDIT: You would think this would not be too difficult to accomplish. Can we make a VB6 ocx file that could replace the old ocx, and just pass all calls to a .Net assembly?</p> <p>EDIT: I tried using the following open source library: <a href="http://easyhook.codeplex.com" rel="nofollow">EasyHook</a></p> <p>But it seems like this question should still be viable. VB6 seems to load COM objects in a way that prevents hooking. I don't see a way to hook instance methods on a class/interface or a class's constructor with EasyHook.</p> http://stackoverflow.com/questions/1722526/weird-namespace-addition-when-importing-a-typelib 0 Weird namespace addition when importing a typelib sharptooth 2009-11-12T14:23:16Z 2009-11-26T12:47:26Z <p>I want to add a method accepting <code>IStream*</code> to my COM interface. Here's the idl excerpt:</p> <pre><code>import "oaidl.idl"; import "ocidl.idl"; import "objidl.idl";//IStream is declared in this .idl file [ uuid(uuidhere), version(1.0) ] library MyLibrary { importlib("stdole32.tlb"); importlib("stdole2.tlb"); [ object, uuid("interfaceid"), dual, nonextensible, oleautomation, hidden ] interface IMyInterface : IUnknown { HRESULT LoadStream( [in] IStream* stream ); HRESULT LoadUnknown( [in] IUnknown* unkn ); }; } </code></pre> <p>I compile the <code>.idl</code> file and import the typelib in another project.</p> <p>When I review the <code>.tlb</code> in OLEView file I see that the <code>IStream</code> is declared inside my typelib but <code>IUnknown</code> is not. This causes problems - when I try to call <code>IMyInterface::LoadStream()</code> in another project C++ says it can't convert <code>IStream*</code> to <code>MyLibrary::IStream*</code>. In the same time it doesn't complain about IUnknown.</p> <p>Why does MIDL put IStream definition inside the typelib and not treat it as a global definition?</p> http://stackoverflow.com/questions/171641/should-there-be-a-difference-between-an-empty-bstr-and-a-null-bstr 2 Should there be a difference between an empty BSTR and a NULL BSTR? Motti 2008-10-05T07:45:02Z 2009-11-26T11:04:35Z <p>When maintaining a <code>COM</code> interface should an empty <code>BSTR</code> be treated the same way as <code>NULL</code>? In other words should these two function calls produce the same result?</p> <pre><code> // Empty BSTR CComBSTR empty(L""); // Or SysAllocString(L"") someObj-&gt;Foo(empty); // NULL BSTR someObj-&gt;Foo(NULL); </code></pre> http://stackoverflow.com/questions/1800168/accessing-protected-memory-in-c-via-com-interop 1 Accessing protected memory in C# via COM interop Lynxy 2009-11-25T21:43:13Z 2009-11-25T22:36:04Z <p>I am making a DLL "Plugin" for a EXE. The EXE calls a function in the DLL with an Object as a parameter, and goes from there.</p> <p>It all works fine and dandy until I split it to a new thread. This error happens</p> <blockquote> <p>Attempted to read or write protected memory. This is often an indication that other memory is corrupt.</p> </blockquote> <p>when executing this code on the object in the new thread:</p> <pre><code> protected object GetPropertyValue(object obj, string PropertyName) { return obj.GetType().InvokeMember(PropertyName, BindingFlags.GetProperty, null, obj, new object[] { }); } </code></pre> <p>The above is trying to access a property on a COM object. Changing the function to 'public' doesn't affect it. The code works just fine however if I'm using just one thread.</p> <p>What's happening is clear: The new thread does not have access to the variable in the EXE. How can I fix this? Not using a thread is not a viable option.</p> <p>Appreciate any help</p> http://stackoverflow.com/questions/1799547/does-ntdll-dll-come-standard-with-windows-xp-and-windows-vista 1 Does ntdll.dll come standard with windows xp and windows vista? stjowa 2009-11-25T19:55:19Z 2009-11-25T21:04:29Z <p>Hello,</p> <p>Does ntdll.dll come standard with windows xp and windows vista? I know that I have it on my windows xp machine, but am not sure that is standard with every machine.</p> <p>The reason I am curious is for the NTQuerySystemInformation function to get CPU usage of a windows xp and/or windows vista system.</p> <p>Thanks,</p> <p>Steve</p> http://stackoverflow.com/questions/1796118/how-to-build-a-safearray-of-pointers-to-variant 0 How to build a safearray of pointers to variant Serge Weinstock 2009-11-25T10:48:18Z 2009-11-25T15:29:22Z <p>Hi,</p> <p>I'm trying to use a COM component with the following method:</p> <pre><code>HRESULT _stdcall Run( [in] SAFEARRAY(BSTR) paramNames, [in] SAFEARRAY(VARIANT *) paramValues ); </code></pre> <p>How can I create in C/C++ the paramValues array?</p> <p>Thanks</p> http://stackoverflow.com/questions/84269/using-component-object-model-com-on-non-microsoft-platforms 3 Using Component Object Model (COM) on non-Microsoft platforms DrYak 2008-09-17T15:10:00Z 2009-11-25T14:18:16Z <p>I'm regularly running into similar situations : I have a bunch of COM .DLLs (no IDL files) which I need to use and invoke to be able to access some foreign (non-open, non-documented) data format.</p> <p>Microsoft's Visual Studio platform has very nice capabilities to import such COM DLLs and use them in my project (Visual C++'s #import directive, or picking and adding them using Visual Basic .NET's dialogs) - and that's the vendors recommended way to use them.</p> <p>I would be interested into finding a way to use those DLLs on non-microsoft development platforms. Namely, using these COM classes in C++ project compiled with MinGW or Cygwin, or even Wine's GCC port to linux (compiles C++ targeting Win32 into binary running natively on Linux).</p> <p>I have got some limited success using <a href="http://www.codeproject.com/KB/COM/comdispatchdriver.aspx" rel="nofollow">this</a> driver, but this isn't successful in 100% of situations (I can't use COM objects returned by some methods).</p> <p>Has someone had success in similar situations ?</p> http://stackoverflow.com/questions/117755/is-there-a-faster-way-of-getting-a-char-from-a-variantt-than-const-charbs 3 Is there a faster way of getting a char* from a _variant_t than (const char*)(_bstr_t) Corey Trager 2008-09-22T21:28:08Z 2009-11-25T13:27:18Z <p>Here's the code I want to speed up. It's getting a value from an ADO recordset and converting it to a char*. But this is slow. Can I skip the creation of the _bstr_t?</p> <pre><code> _variant_t var = pRs-&gt;Fields-&gt;GetItem(i)-&gt;GetValue(); if (V_VT(&amp;var) == VT_BSTR) { char* p = (const char*) (_bstr_t) var; </code></pre> http://stackoverflow.com/questions/1792523/mfc-automation-how-to-implement-removedocument-onclosedocument 1 MFC Automation how to implement RemoveDocument OnCloseDocument BabelFish 2009-11-24T19:55:43Z 2009-11-25T10:25:57Z <p>I have an MFC MDI Application and I am trying to implement Automation with it. I am trying to create a RemoveDocument. How is that done? OnCloseDocument is causing problems. Is there a "standard" for doing that?</p> http://stackoverflow.com/questions/1756352/conflict-using-office-com-object-on-system-with-vsto-com-add-in-installed 0 Conflict Using Office COM Object on System with VSTO COM Add-in Installed RyanW 2009-11-18T14:25:36Z 2009-11-25T07:31:39Z <p>We have a WinForms application where we have to use COM to interface with Excel and/or PowerPoint (I know, COM objects are a major hassle, and I'd like to not have to use them at all, but at least for now we have no choice).</p> <p>Some machines which will be running this app also have a custom VSTO COM Add-in installed within Excel and/or PowerPoint 2007. This add-in works fine and as expected; it loads when the Office app starts, does not crash, and appears to have sufficient exception handling. This VSTO Add-in is developed by our company, so we have the source code available to make changes if needed.</p> <p>The problem manifests itself when the COM object in the WinForms app is declared in code. Once the connection to that object is made, whichever Office app is being connected to (Excel or PowerPoint) will throw a cryptic error, usually along the lines of RPC Server Unavailable.</p> <p>We have found that if we simply disable the VSTO Add-in within Excel/PowerPoint, the problem goes away. Obviously the VSTO Add-in is executing at startup, but we cannot find any exception(s) within the VSTO Add-in which would cause Excel/PowerPoint to throw an error. </p> <p>So as a hack to get around the issue, we can programmatically disable any active Add-ins before the connection to the COM object is made, and then re-enable when finished. But we'd much prefer to get this solved the right way if possible.</p> <p>I realize this is perhaps a niche area, intermixing VSTO Add-ins and COM objects through code in a separate app, but am hopeful we are missing an obvious solution.</p> <p>(Sorry for the long question) </p> http://stackoverflow.com/questions/1784477/building-a-com-addin-for-office-2000-office-2007 0 Building a Com addin for Office 2000 / Office 2007 Stuart 2009-11-23T16:55:54Z 2009-11-24T22:38:18Z <p>I am struggling to find a straight forward guide to creating office addins using VSTO and VB.net.</p> <p>Specifically I would like to know how to be able to create a addin/ dll which can either be referenced from VBA in the form:-</p> <p>Addin.method(argument) or Addin.property = X</p> <p>Or which would install its own custom toolbars/ ribbon interface to an aspect of office for example Word.</p> <p>I've checked MSDN and in terms of legibility and usability of the explanations I have drawn a blank so far.</p> <p>I currently have a requirement to create at least one addin for Office 2000 to run and manipluate SQL and then a suite of addins for a customized Office 2007 (Word) set-up.</p> http://stackoverflow.com/questions/1791361/controlling-the-volume-of-other-applications 2 Controlling the volume of other applications Anton Hansson 2009-11-24T16:49:40Z 2009-11-24T17:05:09Z <p>I am trying to make an app that controls the volume of another process using the Windows 7 Audio API.</p> <p>What I'm looking for is the <a href="http://msdn.microsoft.com/en-us/library/dd316531%28VS.85%29.aspx" rel="nofollow">ISimpleAudioVolume</a> for the session used by the other process.</p> <p>I have tried using the <a href="http://msdn.microsoft.com/en-us/library/dd368281%28VS.85%29.aspx" rel="nofollow">IAudioSessionEnumerator</a> but it will only give me the <a href="http://msdn.microsoft.com/en-us/library/dd368248%28VS.85%29.aspx" rel="nofollow">IAudioSessionControl2</a> of the session. Using the IAudioSessionControl I have managed to receive notifications when I change the volume through sndvol but not change it myself.</p> <p>I have also tried using <a href="http://msdn.microsoft.com/en-us/library/dd370967%28VS.85%29.aspx" rel="nofollow">GetSimpleAudioVolume()</a> from IAudioSessionManager but it will only give me sessions within the current process.</p> <p>How do you do it? It should be possible since sndvol is doing this.</p> http://stackoverflow.com/questions/282091/set-ole-request-timeout-from-c 2 Set OLE Request Timeout from C++ J. Loomis 2008-11-11T20:48:18Z 2009-11-24T13:42:07Z <p>I am instantiating a local COM server using CoCreateInstance. Sometimes the application providing the server takes a long time to start. When this happens, Windows pops a dialog box like this:</p> <p><strong>Server Busy</strong></p> <p>The action cannot be completed because the other program is busy. Choose 'Switch To' to activate the busy program and correct the problem.</p> <p>[Switch To...] [Retry] [Cancel]</p> <p>I have found mention of a Visual Basic property on the Application object, OleRequestPendingTimeout, that can be used to control the time before this dialog comes up. I can't find any good documentation on this or an equivalent that is useful from C++. Can anyone point me in the right direction?</p> http://stackoverflow.com/questions/1787590/help-me-in-understanding-about-a-research-phase-es-operating-system-by-google 1 Help me in understanding about a research phase ES Operating System by Google? claws 2009-11-24T03:28:36Z 2009-11-24T06:17:38Z <p>Hello,</p> <p>I was googling about the latest Chrome OS by google and encountered an another old research phase OperatingSystem owned Google, its "<a href="http://en.wikipedia.org/wiki/Es%5F%28operating%5Fsystem%29" rel="nofollow">ECMAScript Operating System</a>" (ES OS) hosted on <a href="http://code.google.com/p/es-operating-system/" rel="nofollow">GoogleCode</a>.</p> <p>I read quite a few things to understand. I didn't understand:</p> <ol> <li>It is same a micro kernel but it just changes web browser from application to a component in the kernel, (in other words, implements all components of browser like ecmascript interpreter, html rendering engine etc.. inside the kernel as component) right?</li> <li>Isn't this very similar to CHROME OS? Whats the difference between two?</li> <li>Whats up with all the IDL stuff?</li> <li>Anything important I'm missing here? or misunderstanding anything?</li> </ol> <p>I don't know why but I'm still confused about what it is and it purpose.</p> <p>Kernel design:</p> <p><img src="http://es-operating-system.googlecode.com/svn/html/XV%5FSemana%5FInformatica/esjs.png" alt="alt text"></p> <p>If any one wants to understand what it is? Just go through the following stuff (summary):</p> <p>As you can see wiki doesn't say anything about what it is. But it just mentions the ADDITIONAL componenets included:</p> <blockquote> <p>Additional components include 1. an ECMAScript interpreter 2. a cairo-based graphics renderer 3. a port of Squeak.</p> </blockquote> <p>The Homepage says:</p> <blockquote> <p>ES is an ECMAScript friendly, "<em>extensible pure component operating system</em>". </p> </blockquote> <p>This ( <a href="http://www.gamasutra.com/php-bin/news%5Findex.php?story=16503" rel="nofollow">Inside Nintendo's ES Open-Source Operating System</a>) article says</p> <blockquote> <p>The working theory of ES Operating System seems to be that this OS might be the early stages of something similar to <strong>Microsoft's XNA</strong> -- basically a sandbox environment which offers hardware acceleration and a userland based on some form of VM execution, ECMAscript in this instance. Although the current build is against X86, it could be ported over to PPC to run on the Wii, for instance.</p> </blockquote> <p>The original authors research paper for this kernel design says:</p> <blockquote> <p>"We propose an <em>extensible component</em> <em>operating system</em> architecture in which an operating system kernel uses reflection to process C++ pure virtual function based system calls and upcalls to provide a unified programming environment for application, server, and kernel development. We found that we could even develop file subsystems and a TCP/IP protocol stack on an existing operating system based on this architecture."</p> </blockquote> <p><a href="http://code.google.com/p/es-operating-system/wiki/Kernel" rel="nofollow">The design of the ES pure component kernel</a></p> <blockquote> <p><em>The ES kernel has some resemblances to</em> <strong>Sun's CORBA-based Spring microkernel</strong> [Hamilton], and <strong>Microsoft's COM-based MMLite and Rialto kernels</strong> [Draves]. The ES kernel only handles object APIs defined in IDL like Railto, and it allows exchanging object pointers (or interface pointers in COM terminology) among user processes. Each interface pointer acts like an capability associated with a specific object interface. However, unlike those older microkernels, the ES kernel is fully written in C++ in more portable manner following the recent standardization effort of the C++ programing language and the C++ ABI. For example, a C++ language exception with an integer error code triggered in a server process is correctly reported back to the callee in the client process as an ordinary C++ exception in ES.</p> <p>Unlike most other microkernels, a message passing is not a primitive operation in the ES kernel; RPC stubs are not used at all. Instead, the ES kernel collects the metadata of the interface definitions generated by the IDL compiler inside the kernel. Remote object calls are immediately intercepted by the kernel. Then the ES kernel processes them at the meta-level and invokes the appropriate target object's method. For local RPC, the ES kernel uses a similar approach to the Spring's shuttle model, in which the calling thread directly moves to the server address space and makes an upcall to the server object. The extensibility of the ES kernel is assured by allowing the dynamic installation of the new interface metadata into the kernel. The object calls are the the first-class operations in the ES operating system.</p> <p>Using IDL occasionally discouraged the developers due to its potentially cumbersome, extra procedures particularly while Microsoft tried to widely spread COM to their developers. But today, even though there are several deficiencies, the most important APIs for web applications have already been defined in OMG IDL in the DOM, HTML5 and other specifications. In ES, developers no longer have to link each RPC stub to their applications, the overall development cycle has been further simplified. <img src="http://es-operating-system.googlecode.com/svn/html/XV%5FSemana%5FInformatica/esjs.png" alt="alt text"></p> </blockquote> http://stackoverflow.com/questions/1785028/class-not-registered 1 Class not registered Steven 2009-11-23T18:23:09Z 2009-11-23T21:22:22Z <p>Hi,</p> <p>I'm working through "Developer's Workshop to COM and ATL 3.0" by Andrew W. Troelsen.</p> <p>I'm trying to implement the lab in Chapter 3.</p> <p>It shows you how to build a COM client to connect to an inprocess COM server that was developed in an earlier lab.</p> <p>When I run the client, I receive the error "Class not registered" when calling 'CoGetClassObject'.</p> <p>Here is a snippet of code:</p> <pre><code>// Get the class factory pointer of CoCar. hr = CoGetClassObject(CLSID_CoCar, CLSCTX_INPROC_SERVER, NULL, IID_IClassFactory, (void**)&amp;pCF); if(SUCCEEDED(hr)) { // Make a CoCar &amp; get ICreateCar hr = pCF-&gt;CreateInstance(NULL, IID_ICreateCar, (void**)&amp;pICreateCar); pCF-&gt;Release(); } else { char buff[100]; BOOL bRet = FormatMessage(FORMAT_MESSAGE_FROM_SYSTEM, 0, hr, 0, buff, sizeof(buff), 0); std::cout &lt;&lt; buff &lt;&lt; std::endl; } </code></pre> <p>I have tried to register the class by merging the following .reg file with the system registry:</p> <pre><code>REGEDIT HKEY_CLASSES_ROOT\CarInProcServer.CoCar\CLSID = {EFC76CF8-71B8-477b-890A-1233BD9177CB} HKEY_CLASSES_ROOT\CLSID\{EFC76CF8-71B8-477b-890A-1233BD9177CB} = CarInProcServer.CoCar HKEY_CLASSES_ROOT\CLSID\{EFC76CF8-71B8-477b-890A-1233BD9177CB} \InprocServer32 = C:\Users\Steven\Documents\Visual Studio 2005\Projects\CarInProcServer\release\CarInProcServer.dll </code></pre> <p>Not sure if this is relevant, but here is my .def file:</p> <pre><code>LIBRARY "CarInProcServer" EXPORTS DllGetClassObject @1 PRIVATE DllCanUnloadNow @2 PRIVATE </code></pre> <p>NB: I'm using Windows 7</p> <p>Can anyone help?</p> <p>Thanks</p> <p><hr></p> <p>Got it!</p> <p>I manually added:</p> <p>HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Classes\CLSID{EFC76CF8-71B8-477b-890A-1233BD9177CB} \InprocServer32 = "C:\Users\Steven\Documents\Visual Studio 2005\Projects\CarInProcServer\release\CarInProcServer.dll"</p> <p>to the registry.</p> <p>It seems merging the .reg file with this entry in it did not work. Thanks to Ken White for his help. (and others who suggested solutions)</p> http://stackoverflow.com/questions/1763568/hooking-the-windows-com-runtime 2 Hooking the windows COM runtime Danra 2009-11-19T14:14:41Z 2009-11-23T17:06:56Z <p>Hi, Is there an available tool which hooks the windows COM runtime? I want to be able to see all the instances which get created, view queries to their interfaces, method calls, etc.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1784159/how-reliable-is-the-com-extension-from-php-5 0 how reliable is the COM extension from PHP 5? Max 2009-11-23T16:10:06Z 2009-11-23T16:10:06Z <p>I am playing around with the PHP5 COM extension <a href="http://de3.php.net/manual/en/book.com.php" rel="nofollow">http://de3.php.net/manual/en/book.com.php</a> by creating my own dll in C# and using types from it in PHP. </p> <p>Apart from the minor annoyance that my dll apparently has to be installed in the GAC my toy app did work. </p> <p>I am wondering if anyone used the COM extension in a realworld project.</p> <p>What I noticed so far: It seems like debugging could be really tough, most of the time a simple "com_exception" is thrown in PHP if something goes wrong and the stacktrace is not really helpful. And maybe performance is an issue, the loading and especially the unloading (?) of the dll seems to be rather slow.</p> <p>Any experiences to share?</p> http://stackoverflow.com/questions/1781906/cocreateinstance-returning-enointerface-even-though-interface-is-found 1 CoCreateInstance returning E_NOINTERFACE even though interface is found John 2009-11-23T09:06:19Z 2009-11-23T16:05:19Z <p>I have a COM class <code>CMyCOMServer</code> implementing <code>IMyInterface</code> in one application, both with correct GUIDs. <code>CMyCOMServer::QueryInterface</code> will return S_OK (and cast itself to the right type) if IUnknown or IMyInterface is requested, otherwise it returns E_NOINTERFACE.</p> <p>In another app on the same PC, I call:</p> <pre><code>HRESULT hr = ::CoCreateInstance(__uuidof(CMyCOMServer), 0, CLSCTX_SERVER, __uuidof(IMyInterface ),(void **)&amp;pInterface); </code></pre> <p>It returns E_NOINTERFACE. So I assumed I was doing something wrong and added a breakpoint on <code>CMyCOMServer::QueryInterface</code>. I found that when <code>CoCreateInstance</code> is called, <code>QueryInterface</code> is triggered several times for different interfaces:</p> <ul> <li>First, IUnknown is requested - no problem</li> <li>Then, several interfaces like IMarshall etc are requested... these are not supported so E_NOINTERFACE is returned</li> <li>Finally, IMyInterface is requested. I verify QueryInterface returns S_OK and sets <code>(IMyInterface *)this</code> as the interface pointer, as expected</li> </ul> <p>So my confusion is why the calling CoCreateInstance is leaving me a NULL pointer and return code of E_NOINTERFACE, when the COM server app is clearly returning the interface I ask for?</p> <p>EDIT: my client app calls CoInitialize(NULL) at startup, this makes no difference.</p>