Tagged Questions
The comexception tag has no wiki summary.
10
votes
1answer
6k views
C# Active Directory: Get domain name of user?
I know that this type of question has been asked before, but other methods are failing me right now.
As it stands our windows service polls AD, given an LDAP (i.e. LDAP://10.32.16.80) and a list of ...
5
votes
2answers
3k views
Automating Office via Windows Service on Server 2008
We have a Windows Service which runs on 2003 Server. It opens a source Word document using the Word Interop and then does some stuff with it. It also does likewise with Excel and PowerPoint files.
...
2
votes
0answers
263 views
ASP.NET 4.0 Web App throwing “Incorrect function. (Exception from HRESULT: 0x80070001)”
The application is written in ASP .NET 4.0 hosted in IIS 7.5 on machine running Windows Server 2008 R2. The application pool is using Integrated Managed Pipline Mode.
The exception below is thrown ...
2
votes
1answer
132 views
Using Interop.MODI Throws 0x80040154 Exception
I am currently trying to implement the Interop.MODI.dll (From Microsoft Office) to use the Image -> Text features it should Provide.
But when doing
var modi = new MODI.DocumentClass();
I get:
...
2
votes
0answers
176 views
COMException using WebBrowser control in certain 2008 R2 Environments
In certain 2008 R2 environments and not others I'm getting a COMExceptions when utilizing a System.Windows.Forms.WebBrowser control. Whether specifying contents via the DocumentText property or ...
2
votes
2answers
240 views
WatiN, NUnit and CruiseControl.NET— Error message 800704a6
When running a suite of tests in NUnit with WatiN through CruiseControl.NET (as a service), this error appears:
SetUp : System.Runtime.InteropServices.COMException :
Creating an instance of the COM ...
2
votes
1answer
210 views
Issue with Interop.SQLXMLBULKLOADLib.dll
I converted an old dts package into SSIS package and trying to run it Windows 2008 server. This SSIS package runs an Win32 exe file which is using Interop.SQLXMLBULKLOADLib.dll and trying to load some ...
2
votes
2answers
61 views
How to handle HRESULTs in Outlook addin?
Based on this SO answer: Catching COMException specific Error Code, I'd like to know, to properly handle COMExceptions across OSs and multiple versions of OL, if I need to only look at a specific ...
2
votes
5answers
1k views
'License expired' error when dynamically generating Excel docs in ASP.NET
Anyone familiar with error below? When I run my webapp to generate a dynamic excel doc from my local machine it works fine but when the same piece of code is invoked on the server I get the below ...
1
vote
0answers
243 views
Excel.Worksheet.ListObjects.Add(…) throws HRESULT: 0x80020003 (DISP_E_MEMBERNOTFOUND)
Could anyone tell me why a call to ListObjects.Add() would be throwing a member not found exception? If I call GetEnumerator() on the same object that works fine, as does the Count property (zero as ...
1
vote
0answers
50 views
Preventing ComExceptions when querying via WMI
I've got some code that uses WMI to scour a windows domain for computers matching certain criteria.
I get a COMException If I'm unable to communicate with the computer I'm trying to query. When ...
1
vote
0answers
251 views
MSBuild remoting to server throws COMException error
Ive got an MSBUILD script where ive set the Username and Password properties as below
<MSBuild.ExtensionPack.Web.Iis7AppPool TaskAction="CheckExists" Name="@(WebSite -> '%(Name)')" ...
1
vote
1answer
315 views
COMException unhandled error when sending an email through Outlook using VB.Net
I have the following code to send emails to people, whose details are retrieved from a database:
Dim oMsg As Outlook._MailItem
Dim objOL As Outlook.Application
objOL = New Outlook.Application()
oMsg ...
1
vote
1answer
375 views
Custom Lync Client fails on startup
I'm writing a custom light-weight in/out board (AKA Status, Presence, etc.) application using the Microsoft Lync 2010 API. It needs to run after startup/login but I've ran into a problem when I login ...
1
vote
2answers
1k views
System.Runtime.InteropServices.COMException (0x800706BE) when getting contact.LastName
Some of our users are getting this exception sometimes (not for every contact):
System.Runtime.InteropServices.COMException (0x800706BE):
The remote procedure call failed. (Exception from ...
1
vote
1answer
523 views
Symbolic Names for COMException HRESULT Error Codes in .NET
I would like to be able to use the standard symbolic names for HRESULTs returned by COM components in my .NET code. For example, I'd like to be able to write code like this:
try {
...
1
vote
2answers
408 views
NUnit Test with WatiN, runs OK from Dev10, but when NUnit started from “C:\Program Files (x86)\NUnit 2.5.5\bin\net-2.0\nunit.exe”
I have the following code in an Nunit test ...
string url = "";
url = @"http://localhost/ClientPortalDev/Account/LogOn";
ieStaticInstanceHelper = new IEStaticInstanceHelper();
...
1
vote
2answers
699 views
Calling Matlab's MLApp.MLAppClass.FEval from F#
Matlab provides a COM interface that supports remote execution of arbitrary functions (and code snippets). In particular, it has an Feval method that calls a given Matlab function. The third parameter ...
1
vote
0answers
331 views
Visual Studio crashes when I debug a project with a certain form open in design mode…“Catastrophic failure”
As the title says, VS2008 keeps crashing on me whenever I debug a project when a certain form is open. I attached another VS2008 instance to it and found the following exception to be the culprit:
...
1
vote
1answer
96 views
Best Tools for helping debug an Interop issues
One of our customers is getting an interop issue, there is nothing in the stack trace that is worth noting, just ComException with an InterOp issue.
I've tried Process Monitor and Dependency Walker, ...
1
vote
1answer
2k views
COMException when trying to use a Library
I have an ASP.net WebService which uses a Library, this has a dependency on some third party .dlls.
If I add a reference to the Library to my webservice, I get a COMException and I can't load the ...
1
vote
1answer
866 views
Debugging COMException
I am using an ancient Intergraph routing library to do some routing.
I could create several ActiveX and COM objects just fine but there is this one type "Location" and "LocationCtrl" that throws a ...
1
vote
1answer
1k views
VB.NET COMException Error
I have written an application in VB.NET using MS Visual Studio 2005. I am using .NET version '2.0.50727'. The application was running without errors until recently. After being used for a while it ...
0
votes
1answer
33 views
Retrieving the COM class factory for component with CLSID - 80040154
I Have a 3rd Party component "ArchestrA.MxAccess.dll" (which is build on x86 by corgflags) with 2 type libraries and having development PC (XP SP2 32-bit) using Visual Studio 2008.
when I creating ...
0
votes
0answers
63 views
COMException on Main Thread of WPF application
WPF, Excel AddIn, C#,
I have multiple asychronous calls to get data from web service on main thread, then in call back,
I will plot the data in Excel. I tracked call back and they run on main ...
0
votes
1answer
22 views
range.Formula throwing COMException with extremely long formula
So here's how you can reproduce this problem:
1) Have two workbooks open (call them wb1 and wb2)
2) Create a formula in wb1, that references cells in the other, and make sure to squeeze in as ...
0
votes
1answer
31 views
Why I get a COMException (unknown error) with AxSHDocVw.AxWebBrowser with .Net 4 (works with .Net 2)
I'm trying to use a AxSHDocVw.AxWebBrowser in a project. It works fine with .Net 2 framework but if I target the .Net 4 framework I get a COMException.
Any ideas?
Using debug view I've seen this ...
0
votes
0answers
69 views
InteropServices.COMException RPC failed .NET VS
I'm working on a project that utilize a COMInterop object (Word) to create a dynamic .docx file. I'm doing this by using a static .docx file in my solution that are being loaded and opened, then I ...
0
votes
0answers
85 views
HTTP HEADERS COMException
i'm using wrapper .net GeckoFx.
I need Http Header using only Gecko (or any other Wrapper), i cant use HttpWebResponse for some reasons.
So i read in mozilla doc that i can do it with ...
0
votes
1answer
35 views
AddFavorite dont work when implementing IShellUIHelper in c#
I'm building an IE addon and i want to "be" the external object. therefore i use the SetUIHandler to set my class as the UIHandler.
I'm implementing IDocHostUIHandler (referencing to Microsoft ...
0
votes
3answers
85 views
How to check ErrorCode for REGDB_E_CLASSNOTREG?
try
{
// call to Com Method
}
catch (COMException e)
{
if (e.ErrorCode == 0x80040154) // REGDB_E_CLASSNOTREG.
{
// handle this error.
}
}
I would like to check if com ...
0
votes
1answer
225 views
401 unauthorized exception while reading data from the document library SharePoint 2010
We developed a WebPart to read the content of the file in the document library in the SiteCollection. I used the following code to read the content.
WebClient wc = new WebClient();
wc.Credentials = ...
0
votes
0answers
44 views
Excel 2003 addin: retrieving MDX string from pivot table with JasperSoft driver, getting HRESULT 0x800A03EC
I have a pivot table in Excel 2003 connecting to a remote data source, with Jaspersoft as the ODBO->XMLA driver. In VBA I can write:
Sub RetrieveMDXFromPivot()
Dim pt As PivotTable
Dim ...
0
votes
0answers
93 views
How to read read Fax inbox items in c#?
i want to read fax inbox and fetch items in there although find solution herehttp://www.pcreview.co.uk/forums/fax-inbox-read-c-t1827688.html but i face the problem i mean "COMException was ...
0
votes
0answers
122 views
Reading local windows accounts with ManagementObjectSearcher: ComException Problem
I use ManagementObjectSearcher to determine the existing local windows accounts.
ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * from Win32_Account Where LocalAccount = ...
0
votes
1answer
73 views
Keeping an Excel COM object alive
I'm currently using the Excel 2003 Interop mechanism to manipulate some Ranges.
Sometimes I store some of the ranges in my addin, as properties of a class, but when I try to access them at a later ...
0
votes
1answer
355 views
SPWeb.GetListItem COMException on first call - second is ok
I'm trying to use SPWeb.GetListItem() to get an item by a known URL (MSDN).
So basically I'm doing the following:
using (SPSite spSite = SPContext.Current.Site)
{
using (SPWeb spWeb = ...
0
votes
2answers
258 views
COMException occurred: ErrorCode = -2147287036
I have to parallelize an application; This application has to process a file, I used tasks and each thread is processing one line of data (previously it used to process lines one by one sequentially). ...
0
votes
1answer
1k views
Using PHP's COM object with Office 2010 (Excel.Application)
I recently coded a script in PHP using the COM object to strip data out of cells in an Excel 2007 spreadsheet into an array. This was all done locally on an XP system with Office 2007. Once I'd ...
0
votes
1answer
3k views
COMException (0x80040154): Class not registered when using AxAcroPDFLib
I am getting following error when using AxAcroPDF
System.Runtime.InteropServices.COMException (0x80040154): Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
The ...
0
votes
1answer
184 views
Excel::Shape object getting released automatically after the count reaches 18 in List<T>
I have a Excel addin written in C# 2.0 in which I am experiencing a strange behavior.Please note that this behavior is only seen in Excel 2003 and NOT in Excel 2007 or 2010.
Issue:
When the user ...
0
votes
2answers
2k views
WebBrowser.Navigate(…) throws COMException
I'm developing an Internet Explorer command button that will open a specific web page once clicked. Here's a snippet of code (IEApp is a reference to an instance of IE.WebBrowser):
...
0
votes
1answer
752 views
Random COMException on Web App “The handle is invalid”
All of a sudden, I am consistently getting a weird COMException on this machine when I try serve a web app with IIS. I never used to have any problems with this.
Stack Trace:
[COMException ...
0
votes
2answers
450 views
Unknown com_exception error
I'm writing an extension for the Yii framework which I have asked on here about before and someone is reporting the following error:
com_exception
Description
Source: UnknownDescription: ...
0
votes
2answers
575 views
SharePoint COMException
When adding or editing a page in a SharePoint Pages library we get the following exception:
[COMException (0x81020016): Item does not exist
The page you selected contains an item that does not ...
0
votes
1answer
242 views
C# Deleting a IIS virtual directory on windows server 2003 gives a COMException
DirectoryEntry oDirectoryEntry = new DirectoryEntry(virtualDirMetaPath);
oDirectoryEntry.DeleteTree();
This throws a COMException 0x80005000. Any pointers welcome. Creation of virtual directory ...