Windows error 0x00000216, 534

Detailed Error Information

ARITHMETIC_OVERFLOW[1]

MessageArithmetic result exceeded 32 bits.
Declared inwinerror.h

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

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 Code534 (0x0216)

Questions

9votes
3answers

Why do I have to cast enums to int in C#?

This is my code: internal enum WindowsMessagesFlags { WM_EXITSIZEMOVE = 0x00000232, WM_DISPLAYCHANGE = 0x0000007e, WM_MOVING = 0x00000216, } protected override void WndProc(ref Message m) { switch(m.Msg) { case (int)WindowsMessagesFlags.WM_DISPLAYCHANGE: FixWindowSnapping(); break; case (int)WindowsMessagesFlags.WM_EXITSIZEMOVE: SaveWindowProperties(); break; case (int)WindowsMessagesFlags.WM_MOVING: KeepProperLocation(ref m); break; } } Is there anyway to prevent the casting? read more
c#
enums
casting
int
5votes
3answers

my java application exited suddenly because of a fatal error {EXCEPTION_UNCAUGHT_CXX_EXCEPTION }

I have developed a GUI java application. It has login page for user authentication. It use mysql as back-end. I have wrapped my application using Jar2Exe 1.0 (Regexlab.com) to a 32bit windows .exe file. not the problem is that when i run the application : * the database connection is [...] read more
java
mysql
4votes
1answer

Qt application and Google Breakpad

I am currently working with an application trying to integrate BreakPad into a Qt application. I found a page that helped me out a bunch with the initial setup and quirks. https://github.com/JPNaude/dev_notes/wiki/Using-Google-Breakpad-with-Qt I still cannot get it to work for actual exceptions. I created a demo application and it is [...] read more
c++
qt
google-breakpad
2votes
0answers

Custom Java app, does not show startup splash screen on some devices?

I have a Java app, called Infra12. It is not for sale so wont be in common use. It is designed to interrogate industrial equipment, but the supplier of the software has gone into administration, and they only supplied it to customers who bought industrial equipment from them - one [...] read more
windows-10
java
dll
c
2votes
0answers

mspgcc-size ROM/RAM usage in percentage

With mspgcc-size I can get an output like this: text data bss dec hex 13072 236 65296 78604 1330c We know that: Flash = data + text RAM = data + bss How can I extract the size of ROM/RAM from the selected -mmcu=msp430g2553 with the toolchain? e.g. ROM: 8192 [...] read more
microcontroller
avr-gcc
toolchain
2votes
4answers

Flex 4.6 IOS Compiler

I've recently updated my Flex SDK version to 4.6 in the hopes that my IOS application's performance will improve. Unfortunately I cannot successfully compile my application in the "standard" compile mode (The super slow one). From what I can see from the error log produced by Java (The ADL compiler [...] read more
java
apache-flex
memory
flex4.6
1vote
0answers

Xalan 2.7.1 and IIS 7 Cause HTML Truncation

I have a rather sticky problem for which I've done a lot of research but have had no luck in finding a solution. I have a web application comprised of Tomcat servlets. Tomcat is running on a Windows 2008 R2 server and uses the Apache ISAPI Redirector 1.2.37 in IIS [...] read more
xml
tomcat
iis-7
xalan
ajp
0votes
1answer

Cannot add networked printer to 2008 Server. Error 0x00000216

The printer is a Zebra LP 2844-z. The machine with the printer connected to it is a Windows 7 64bit. Both x86 and x64 drivers are installed. I'm trying to connect it to a Windows 2008 32bit server and I keep getting. Windows cannot connect to the printer. Operation could [...] read more
windows-server-2008
windows-7
drivers
0votes
2answers

A fatal error has been detected by the Java Runtime Environment: JNI (Internal Error)

I am trying to call VB DLL method in Java. I have succeeded in calling simple Hello World method. Now I try to call a method that takes String as input and returns String as output. The Wrapper DLL is compiled successfully. But on running the Java code, the error [...] read more
vb.net
jvm
java-native-interface
c++-cli

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