Windows error 0x80020004, -2147352572

Detailed Error Information

DISP_E_PARAMNOTFOUND[1]

MessageParameter not found.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode2 (0x002)
NameFACILITY_DISPATCH[2][1]
DescriptionThe source of the error code is a COM Dispatch.[2][1]
Error Code4 (0x0004)

Questions

0votes
1answer

C++ Optimization breaking OLE Automation program (non-MFC)

I'm writing a program to parse a Word Document and export data out to an Excel Workbook using OLE Automation (the non-MFC way I guess). Works fine in Debug, not so in Release (specifically if optimization is enabled). The error is that the IDispatch::Invoke call failed, specifically: 0x80020004 DISP_E_PARAMNOTFOUND Parameter [...] read more
c++
optimization
visual-studio-2013
ole
office-automation
-1votes
3answers

How to download an url to a given local file

I am trying to download an .exe from a URL and have it go a folder that I want it to, not the download folder. This is what I have so far in the code: Section "file" SEC07 SetOutPath "$INSTDIR" SetOverwrite ifnewer push "http://www.URL.com/file.exe" call InternetExplorerAuto_OpenURL SectionEnd At this point [...] read more
nsis

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0