This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
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.
I am using the jsmn JSON parser (source code) to get some text from a JSON. jsmn stores the data in tokens, but the tokens do not hold any data, they just point to the token boundaries in JSON string instead. For example, jsmn will create tokens like: * Object [...] read more
I'm having some trouble doing updates with proxied authorization. I'm using UnboundID's LDAP SDK to connect to OpenLDAP, and sending a ProxiedAuthorizationV2RequestControl for dn: uid=me,dc=People,dc=example,dc=com with the update. I've tested and verified that the target user has permission to perform the operation, but I get > insufficient access rights when [...] read more
I have a RoboCopy problem and here is the scenario. My server is running Windows Server Essentials 2012 R2. My laptop is running Windows 10 Technical Preview. The server is running as a domain controller but my computer is not joined to that domain. I have a share on the [...] read more
C:\Users\Alex.Newton>robocopy /"\centlpf01cz6c\c$\Program Files\ProgramName\/" /" \centlpf01cz6c\Program Files\TestBatch\Test\/" ------------------------------------------------------------------------------- ROBOCOPY :: Robust File Copy for Windows ------------------------------------------------------------------------------- Started : Mon May 25 15:42:30 2015 2015/05/25 15:42:30 ERROR 67 (0x00000043) Getting File System Type of Destinatio n \\centlpf01cz6c\Program Files\TestBatch\Test\ The network name cannot be found. Source : \\centlpf01cz6c\c$\Program Files\ProgramName\ Dest - \\centlpf01cz6c\Program Files\TestBatch\Test\ [...] read more
While debugging with VS 2012 Graphic's Debugger, I want to look at an index buffer, but the format that is showing it in is as float. This means the numbers are different than they would be with an int or short format. Does somebody know how to change this? Here [...] read more
I'm using IntellJ IDEA 13 CE and jdk 1.7. Compiling my project results in no errors. When I try to run the application, I'm notified that: The last time you opened java, it unexpectedly quit while reopening windows. Do you want to try to reopen its windows again? Given options [...] read more
I'm trying to send the Ctrl + C command (Copy text) to a custom handle, so it doesn't get the focus. I looked the messages in Spy++ up: <000001> 00540824 S WM_GETDLGCODE wParam:00000011 lParam:0018D218 <000002> 00540824 R WM_GETDLGCODE fuDlgCode:DLGC_WANTARROWS [lResult:00000001] <000003> 00540824 S WM_GETDLGCODE wParam:00000043 lParam:0018D218 <000004> 00540824 R WM_GETDLGCODE [...] read more
My computer was working fine for months but now when it starts up the Windows XP screen comes up to show the computer is starting up but then a blue screen appears with the error below: BAD_POOL_CALLER STOP: 0x000000C2 (0x00000043, 0xDB3C6000, 0x00000000, 0x00000000) I have tried booting off the Windows [...] read more
I have a legacy application that was built with VC++6.0 that uses an OCX control. I have upgraded the application to build with VS2013. Initially I got it to build and run successfully but when I tried to regenerate the ocx.h and ocx.cpp file using the Class Wizard by 1. [...] read more
In working over uncompyle6 decompilation bugs I've come across problem of trying to reconcile CPython assembly output with what the Python docs describe for MAKE_FUNCTION. Python Source: def foo(x: 'an argument that defaults to 5' = 5): return Disassemby (xdis's version): # Argument count: 1 # Kw-only arguments: 0 # [...] read more
So, I am trying to learn ARM assembly and basically what I want to do is turn on the LEDs of my BeagleBone Black using pure assembly. I know how to program in C very well, but I am new to ARM assembly if that makes any difference. Basically I [...] read more
We have an outlook addin installed, and while opening some of the html-emails, outlook crashes. If we remove the addin, the emails open properly without outlook getting crashed. The addin isn't supposed to do anything while opening emails. We can't figure out why outlook is crashing beacause of our addin. [...] read more
I'm trying to programmatically make an external WinForms application copy its data to the clipboard, and it's driving me crazy. Since pressing Ctrl-C in the application does the right thing, I've been trying to send ctrl-c using my C# application to the other application. Here is my sequence of commands. [...] read more
I am receiving an error while starting Windows XP on my ten year old computer (D845PEBT2) that says Windows cannot start because the following file is missing or corrupt: Windows\system32\config\system You can attempt to repair this file Run setup from CD Press 'r' on the setup screen In the safe [...] read more
I'm taking a computer architecture class, and they're having us use MIPS assembly. Our current assignment is asking us to take a user-inputted hex string, and turn it into a binary one. The code I've written "works", but it's horrible, to say the least. What would be a better approach [...] read more
I am attempting to copy a file from my network drive to all computers on my network but i am running into a few issues. First thing is that im getting this warning: ------------------------------------------------------------------------------- ROBOCOPY :: Robust File Copy for Windows ------------------------------------------------------------------------------- Started : Tuesday, June 30, 2020 9:33:31 AM [...] read more
I am creating a program that will read a file into a string and will capitalize all characters and remove anything that is not a letter. I am not sure what it is that I am doing wrong here. After the first execution of the else statement I receive an [...] read more
The code is supposed to compare an inputted string with various hardcoded options to provide a menu. This is the code I'm using .stack 4096 ... GetStdHandle proto :dword ReadConsoleA proto :dword, :dword, :dword, :dword, :dword WriteConsoleA proto :dword, :dword, :dword, :dword, :dword STD_INPUT_HANDLE equ -10 ... .data ... bufSize [...] read more
I've been recently writing implementation of heap, and I found out that my IDE during debugging displays key values in hex. I tried to change to decimal, by unchecking "display in hex" in autos/locals window, changing from hex to signed/unsigned in memory windows and passing ",d" after my variable name [...] read more
Hi I have a Windows phone app which is getting a number of crashes reported by the dev center. I recently did an upgrade which included some minor changes and the moving of some common code from a Silverlight class library to a Windows phone class library (so that I [...] read more