Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
3answers
1k views

How do I determine the HResult for a System.IO.IOException?

The System.Exception.HResult property is protected. How can I peek inside an exception and get the HResult without resorting to reflection or other ugly hacks? Here's the situation: I want to ...
4
votes
1answer
268 views

E_ACCESSDENIED on CoCreateInstance, where it used to work

I have some code that used to work, but recently stopped. It's in an Adobe Reader Plugin, and the latest Reader version has a "Protected Mode" which causes my problem. My plugin can load some of my ...
3
votes
1answer
117 views

COM `HRESULT` is wrapped into an Exception in .NET

(preliminary note: I'm not yet fully up to speed with the whole 'interop' thing...) When using a COM library from within .NET, all HRESULT methods are wrapped into something that throws when the ...
2
votes
1answer
31 views

VarCmp returning 0x80020008 (Bad variable type)

I'm trying to compare two VARIANT values in VC++ using the VarCmp function: VARIANT a; VariantInit(&a); a.vt = VT_UINT; a.uintVal = 32; VARIANT b; VariantInit(&b); b.vt = VT_UINT; b.uintVal ...
2
votes
1answer
73 views

Correct format specifier for printing HRESULT with Delphi 6's Format() statement in hexadecimal format?

I have a Delphi 6 application that uses the DSPACK component library. That library prints a log line when in debug mode whenever a particular DirectShow operation fails. Here's the relevant souce ...
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
1answer
84 views

Detecting the use of HRESULTs as bools

We have a big body of code that was refactored so that stuff which was plain-old C++ is now COM. I've been spending the last couple of days hunting out places in which we missed the fact that a ...
2
votes
3answers
1k views

Explaining the declaration/definition of HRESULT

I just looked at the definition of HRESULT in VS2008. WinNT.h has the following line: typedef __success(return >= 0) long HRESULT; What exactly does it mean? It doesn't even look like C or C++ ...
2
votes
2answers
681 views

Working with HResult, interop and related things in C#

I am working on a project in C# to create a forms application. I would like to use IFileDialog and other functionality that is part of the native Windows API (or however ti should be called). ...
2
votes
1answer
448 views

Creating your own HRESULT?

I already have a project that uses alot of COM, and HRESULTS. ANyways i was wondering if its possible to define your own HRESULT, AND be able to use the FormatMessage() for our own HRESULT? I dug ...
1
vote
1answer
63 views

C# Webbrowser Control weBrowser.Navigate fails on long URL

For some reason when I try to perform a navigate to a long URL: webBrowser.Navigate(Url, "_self", null, "Referer: " + Referer); I get the following error: Error HRESULT E_FAIL has been returned ...
1
vote
1answer
137 views

An error occurred while validating. HRESULT = '8000000A'

I have been receiving this error for a while when using devenv on an automatic build. I have gone through every website I can find, and the usual answers mention refreshing dependencies (Which I ...
1
vote
1answer
515 views

Microsoft.Office.Interop.Excel not work on 64 bit

I encountered a problem when developing on Ms Visual Web Developer 2008 Express Ed. Developing ASP.NET C# on Windows7 64 bit OS, I'm trying to open an Excel document, but it gives me "Old format or ...
1
vote
1answer
540 views

What causes CORDBG_E_CLASS_NOT_LOADED (HRESULT: 0x80131303)

While attempting to debug an application, I keep noticing that two of my arrays and one of my lists seems to be mysteriously... Not there. The error given for that (upon pausing the application and ...
1
vote
1answer
109 views

How to debug an unspecified error ($80004005) during DirectShow put_Enable call on Capture filter?

I have a DirectShow application written in Delphi 6 using the DSPACK component library. I am having a strange problem enabling an input line on a Filter. I search the pins until I find the input ...
1
vote
2answers
58 views

What does “Invalid parameter error. 0x80030057 (STG_E_INVALIDPARAMETER)” usually mean?

I came across the COM error: Invalid parameter error. HRESULT 0x80030057 (STG_E_INVALIDPARAMETER) when dealing with an Excel interop component called Aspose and couldn't figure out why this ...
1
vote
0answers
45 views

In Microsoft javascript is it possible to get the textual description of an error coming from an HRESULT?

I know the Error object http://msdn.microsoft.com/en-us/library/dww52sbt in Microsoft javascript. Some errors come from an HRESULT and they have a valid number property (for example -2147023570 which ...
1
vote
1answer
58 views

Returning undocumented HRESULTS from standard COM interface methods?

What is the rule on returning undocumented HRESULTS from documented standard COM objects? i'm looking at the documentation for IObjectWithSite.SetSite, which says i should return S_OK in all ...
1
vote
0answers
870 views

What does this usually mean, Error HRESULT E_FAIL has been returned from a call to a COM component.?

I have a particular view with a DataGrid (silverlight 4). But i have a project where resources have been merged with another project (for backward support). Now, after this merge, i am getting this ...
1
vote
2answers
795 views

Finding HRESULT '-2146697191' Error message - clickonce setup error

I want to know what exactly HRESULT error means? This is occuring when user is trying to download clickonce application from our server. Hence to figure what is the problem behind it I want to know ...
1
vote
0answers
215 views

HttpWebRequest maintenance and http web errors causing it to return “HRESULT E_FAIL” and “server not found”

I am iterating through a large list of objects (1503) and calling a save method on a ServiceProxy I have written. The service proxy uses the new networking stack in Silverlight 4 to call ...
1
vote
1answer
210 views

What does this macro do? __success(return >= 0) long

In the Windows header file WinNT.h, HRESULT is defines as follows: typedef __success(return >= 0) long HRESULT; Doing some research I learned that the "__success" macro is part of the Microsoft ...
1
vote
4answers
743 views

Which HRESULT literal constant will fail the SUCCEEDED() macro?

Definition of SUCCEEDED(): #define SUCCEEDED(hr) (((HRESULT)(hr)) >= 0) Background: When an Ok button is clicked on a dialog, I need to return an HRESULT value hr such that SUCCEEDED(hr) is true. ...
1
vote
1answer
791 views

The located assembly's manifest definition does not match the assembly

Im getting the error below when i try to build my web app. the same code work on my other machine, but not in the main dev. i have the dll in the bin folder, too. and the error discription is nothing ...
1
vote
2answers
1k views

Silverlight ChildWindow: HRESULT E_FAIL on ChildWindow.Show()

I have some problems with ChildWindow control, I have created an error window control that is shown after unhandled exception is caught in app.xaml.cs. The problem is when I try to show the error ...
1
vote
3answers
1k views

What does ERROR_DLL_INIT_FAILED mean?

I'm seeing the following exception in my managed (C#) app calling an unmanaged assembly: Caught:System.IO.FileLoadException 'A dynamic link library (DLL) initialization routine failed. (Exception ...
1
vote
0answers
599 views

Error while using Keyword Query object in asp.net application for search in sharepoint

I am trying to use Keyword Query object in asp.net application. I wrote this code : Namespace : using System.Data.SqlClient; using Microsoft.SharePoint; using ...
1
vote
2answers
100 views

How should I check that [out] params in COM can be used?

Officially one should not use [out] parameters from COM functions unless the function succeeded this means that there are (at least) three ways to see if an [out] parameter can be used. Consider the ...
0
votes
0answers
72 views

HRESULT = 80004005 with Visual Studio 2008

I'm getting this error when building my project, and I can't fix it. I have two solutions with the same setup projects referenced in both, and probably thus, the problem. I googled, I look it up here ...
0
votes
1answer
54 views

XNA 3.1 Preserving the Depth Buffer before it clears

I'm trying to get around XNA 3.1's automatic clearing of the depth buffer when switching render targets by copying the IDirect3DSurface9 from the depth buffer before the render targets are switched, ...
0
votes
1answer
39 views

How can I determine which filter in my DirectShow filter graph failed when I call IMediaControlRun?

I have a Delphi 6 application using the DSPACK component library that builds a filter graph and then runs it. When I run the Filter Graph I am getting an error via a failed HRESULT return from ...
0
votes
1answer
28 views

Proper HRESULT for “this object is not completely initialized”

I'm writing a COM object that provides access to a service that must be explicitly connected before calls can succeed. Is there a generic HRESULT code that describes that the callee object is in a ...
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
50 views

how HRESULT return value is set while calling com-interop methods?

*CString sWallpaper = wszWallpaper; // Convert the wallpaper path to ANSI IShellLink* pISL; IPersistFile* pIPF; // 1. Initialize the COM library (make Windows load the DLLs). Normally you ...
0
votes
1answer
142 views

InitializeComponent() Error Help

Im a beginner programmer for Visual Studio 2005 and coding in VB and i required some help. I've been hitting this error everytime i call InitializeComponent() : ComException was unhandled Class ...
0
votes
2answers
125 views

Is there a way to get the string representation of HRESULT value using win API?

Is there a function in win API which can be used to extract the string representation of HRESULT value? The problem is that not all return values are documented in MSDN, for example ...
0
votes
1answer
233 views

How to use GetDHtmlDocument() in MFC programming?

I am trying to use HRESULT GetDHtmlDocument(IHTMLDocument2 **pphtmlDoc); function in MFC programming. Basically, I am trying to render GUI in a HTML View Dialog application (C++ w/ MFC) ...
0
votes
1answer
296 views

#import lead to a HRESULT 0x80040154 “Not registered class”

I'm trying to use a COM DLL from VC++ 2005. I created a TestCOMlib.dll with ATL, created a simple interface ISimple and added one property (type LONG, name Property01) and one method (name Method01). ...
0
votes
2answers
233 views

Passing HRESULT as a string on command line

I have a need to pass in an HRESULT value to a program as a command line argument. I had intended to do so by passing the hex value, e.g.: >receiver.exe 0x80048836 I'm trying to convert this ...
0
votes
1answer
219 views

How do I get HRESULT returns from libraries imported to c# with tlbimp.exe?

I am using the GMFBridge directshow filter from c# and the import library seems to discard the HRESULTs. i.e [id(5), helpstring("Create render filters in empty render graph")] HRESULT ...
0
votes
0answers
448 views

Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

I'm trying to parse HTML page usging Microsoft.mshtml . I get an exception : Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) Any idea how to resolve this problem . Thanks in ...
0
votes
2answers
224 views

HRESULT exception not caught in VS 2008

I've got a stange situation in visual studio 2008 C++. I work on code that was originally written for visual studio 2003, where everything works well. Now, ported to VS 2008, the exception handling, ...
0
votes
1answer
710 views

SharePoint error whan adding user as site owner

I have a MOSS 2007 site which I'm an admin for. In the 'People and Groups' area for a site, I'm trying to add a user as a site owner. On the 'Add User' page, I add the name of the user and click 'OK', ...
0
votes
4answers
128 views

Compiler not flagging incorrect return value for HRESULT

I just spent way too long trying to diagnose why, in the following snippet of code, the ProcessEvent() method seemed to be ignoring the false value I passed in for aInvokeEventHandler: HRESULT ...
0
votes
1answer
415 views

Get more debug info from AxHost?

I'm trying to deploy an application which uses an library that embeds an ActiveX control with AxHost in C#. When I run the installed app on our test rig I catch and present the following exception: ...