Tagged Questions
The win32exception tag has no wiki summary.
6
votes
6answers
3k views
System.ComponentModel.Win32Exception: The operation completed successfully
I am getting this exception sometimes while running my Windows Forms app for a long time:
System.ComponentModel.Win32Exception: The operation completed successfully
at ...
6
votes
3answers
2k views
Throwing a Win32Exception
I've been writing a lot of code recently that involves interop with the Win32 API and have been starting to wonder what's the best way to deal with native (unmanaged) errors that are caused by calls ...
5
votes
3answers
8k views
Win32Exception Not enough storage is available to process this command
Through my automated crash collection for MaxTo I got the following crash report:
V8.12.0.0 - System.ComponentModel.Win32Exception - :Void UpdateLayered():0
Version: MaxTo8.12.0.0
Exception: ...
4
votes
2answers
3k views
No application is associated with the specified file exception
UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
at ...
2
votes
3answers
131 views
System.ArgumentException and System.ComponentModel.Win32Exception when getting process information
When i try to write process' information to console i get System.ArgumentException and System.ComponentModel.Win32Exception. What causes this? How can i stop having those?
Process ...
2
votes
1answer
841 views
Error 23 is not a valid Win32 application on .resx file
I have a form in my VB>NET project (2010) with some ImageList. Those images are embedded in the list with a form resource in a .resx file as
data name="xxxx.ImageStream" ...
2
votes
1answer
324 views
Exception on printing: The device is not ready
I have a report document created by Microsoft Reporting but instead of using its viewer to show the document and print it, I used PrintDocument class to print it directly without showing user any ...
2
votes
1answer
926 views
Win32Exception @ ServiceHost.Open() for WCF service
I am working on writing BDD specifications for a broad set of WCF service infrastructure I am writing. I have noticed that each specification I write that involves a call to ServiceHost.Open(), that ...
1
vote
0answers
463 views
Win32Exception “The System Cannot Find the File Specified”
This has been bugging me for 6 hours
How on earth is it solved. I want the program to run a batch file (IP) which is both in resources and in the application path (i.e. bin/debug and /release).
The ...
1
vote
1answer
310 views
A first chance exception of type 'System.ComponentModel.Win32Exception' occurred in WindowsBase.dll
I have a .NET 4.0 WPF project.
When I open a FileDialog, choose some files and press the OK button, then I see in the output window this error:
A first chance exception of type ...
1
vote
3answers
636 views
Win32Exception the parameter is incorrect
Hi i tried to run an .exe file using Process.Start() but it throws the 'Win32Exception the parameter is incorrect' .
my code is
Process p = new Process();
Process.Start("C:\\Program ...
1
vote
2answers
577 views
PrintDocument.Print() throws a Win32Exception
I'm getting a strange exception from the following code:
var printDialog = new PrintDialog();
printDialog.ShowDialog();
var printDocument = new PrintDocument { DefaultPageSettings = ...
1
vote
3answers
535 views
HRESULT exceptions
Is there any lists where the error codes are explained. Eks: HRESULT: 0x81070215 does not tell me enything about what when wrong?
0
votes
0answers
68 views
I can't catch Win32Exception?
I have a Wpf application. I start a new process in it. The process is a Console application. When I start Wpf application it throw me a Win32Exception "The system cannot find file specified". The ...
0
votes
0answers
26 views
Keep getting Error with certificate after restart of computer
I installed an SSL client certificate on my computer to the local machine's certificate store (section: personal).
I am accessing this certificate in C# / .NET via the X509Store-class. And my ...
0
votes
0answers
79 views
Getting an ERROR_DDE_FAIL when opening office document using ShellExecuteEx
I encountered an error returned from ShellExecuteEx when opening an office file. This only happens on some pc's even while they have same OS/Office version/ etc.
The error I am getting is an ...
0
votes
0answers
84 views
win32Exception in winform
i have a weird exception, it directs me to the design file in winfrom.
this.resetToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
...
0
votes
1answer
914 views
Unhandled win32 Exception occurred in my Android ADV
Help!
Every time I run any device from Android AVD it crashes, then the Visual Studio ? starts and gives the followed message.
A unhandled win32 Exception occurred
in emulator.exe
followed ...
0
votes
2answers
118 views
winform Apps for SharePoint works on the dev but getting errors in staging
I get this after few minutes.
visual studio just-in-time debugger an unhandled win32 exception occured in winprogram.exe[6108]
Then I see this in the event logger.
Time Provider NtpClient: No valid ...
0
votes
2answers
652 views
Access denied while getting process path
I am trying to get process path by pid but I'm getting Win32Exception (access id denied).
The code looks like this:
string path = Process.GetProcessById(pid).MainModule.FileName
I have tried using ...
0
votes
5answers
453 views
Unhandled Win32 exception
At runtime, when myApp.exe crashes i receive "Unhandled Win32 exception" but how would i know which exception was occurred? where did something went wrong?
0
votes
3answers
306 views
Why does .NET not clear errors internally?
I am running the following scenerio:
SafeFileHandle handle = Win32API.CreateFile((deviceName + "\\" + pipeName),
DesiredAccess.GENERIC_WRITE | DesiredAccess.GENERIC_READ,
...
0
votes
1answer
1k views
C#: Eventlog, impersonation and Access Denied Win32Exception
I am using a dedicated account (with SDDL policy) to write event log entries to a custom event log. For this I use WindowsImpersonationContext and obtain a token with LogonUser:
WindowsIdentity ...
0
votes
5answers
3k views
Win32Exception: The directory name is invalid
I'm trying to run a process as a different user that has Administrator privilege in 2 different computers running Vista and their UAC enabled but in one of them I get a Win32Exception that says "The ...
0
votes
2answers
990 views
access denied trying extracting an archive on the windows user temp folder
I'm trying to run a command-line process (which is extraction of a .7z archive) on a file that lies in a temporary folder on the windows user temp directory
(C:\Documents and Settings\User\Local ...