Windows error 0x000003EC, 1004

Detailed Error Information

INVALID_FLAGS[1]

MessageInvalid flags.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800703EC.

HRESULT analysis[2]

This is probably not the correct interpretation of this error. The Win32 error above is more likely to indicate the actual problem.
FlagsSeveritySuccess

This code indicates success, rather than an error. This may not be the correct interpretation of this code, or possibly the program is handling errors incorrectly.

Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode0 (0x000)
NameFACILITY_NULL[2][1]
DescriptionThe default facility code.[2][1]
Error Code1004 (0x03ec)

Questions

7votes
1answer

How to use OpenCV 4 in Java on Raspberry PI (armv6 and armv7 Raspian)?

This question is very similar to this one however it's on Linux ARM ( Raspberry Pi). I've compiled OpenCV 4.4.0 from source along with the Java bindings and tried something like this hack (that worked on Windows): import org.opencv.core.*; public class CVTest { public static void main(String[] args) { System.out.println("setup"); [...] read more
java
opencv
raspberry-pi
arm
0votes
1answer

MIPS Address out of range (MARS); Beginner

I'm trying to understand some code. I'm still at the very beginning of MIPS. I tried to get it run on Mars to understand whats happening step by step. However it's stops at line 6: Runtime exception at 0x0040000c (refers to line 6): address out of range 0x000003ec. I tried [...] read more
assembly
mips
runtimeexception
mars-simulator
outofrangeexception
0votes
2answers

COMException caused by Application.EditClear Method

I have a COMException caused by the following code MSProject.Application mspApp; bool result = mspApp.SelectColumn(Constants.ACTUALS_RECENT_INDEX, Missing.Value, Missing.Value, Missing.Value); mspApp.EditClear(Missing.Value, Missing.Value, Missing.Value, Missing.Value); The value of result is true. Here's the exception: > System.Runtime.InteropServices.COMException (0x000003EC): An unexpected error > occurred with the method. > > at System.RuntimeType.ForwardCallToInvokeMember(String memberName, > BindingFlags flags, [...] read more
ms-project
0votes
1answer

Migrated application crashes, if DEP is active

I've ported our MFC application from vc6 to vc9 (VS2008). Everything's fine, but if DEP is active, program crashes (s. stacktrace below). I've already tried to play around with NX-Flag, but nothing changes. I also tried to build the application with Parasoft Insure++, but no memory corruptions or any other [...] read more
c++
mfc
visual-c++-6
visual-c++-2008
dep

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