win32exception Questions
4
Solved
Is there any lists where the error codes are explained. Eks: HRESULT: 0x81070215 does not tell me enything about what when wrong?
Faery asked 31/8, 2009 at 8:54
6
Solved
I have a winforms application in C# where I have to open a certain Folder.
I use
System.Diagnostics.Process.Start(pathToFolder);
This results in the following exception:
System.ComponentModel...
Wasteland asked 27/1, 2016 at 8:10
6
Solved
I need to let a .reg file and a .msi file execute automatically using whatever executables these two file types associated with on user's Windows.
.NET Core 2.0 Process.Start(string fileName) docs...
Eastward asked 18/10, 2017 at 10:42
2
I start a process with the default application for the file type, but if the user has deleted his default application, a Win32Exception is thrown. In addition there are other cases when a Win32Exce...
Pamela asked 21/12, 2018 at 9:47
2
Solved
Most of the time working as a .Net developer gives us the freedom to mess around in our high-level-of-abstraction world, but sometimes reality kicks you in the private parts and tells you to find a...
Haruspicy asked 10/4, 2012 at 10:25
3
Solved
I'm using AvalonDock 2.0, and when ever I open a dock container, while on debugging mode the application crash (it works fine when running without debugging). I get the below exception:
An unhan...
Wescott asked 15/6, 2016 at 12:3
1
Solved
In listings of Win32 error codes, each error has three components:
The numeric error code
A descriptive message
An identifier consisting of capitalized words separated by underscores
According ...
Gadolinite asked 13/5, 2015 at 0:35
6
Solved
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 "Th...
Rashidarashidi asked 13/6, 2009 at 11:50
2
Solved
I have MessageDialog dialogue responsible for delete confirmation.
private async void ShowDialogClick(object sender, RoutedEventArgs e)
{
MessageDialog md = new MessageDialog("Are your sure you w...
Tegan asked 16/2, 2014 at 0:38
4
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: Syste...
Monodrama asked 14/2, 2009 at 11:33
8
Solved
I am getting this exception sometimes while running my Windows Forms app for a long time:
System.ComponentModel.Win32Exception: The operation completed successfully
at System.Drawing.BufferedGrap...
Dropout asked 30/7, 2009 at 22:32
3
Solved
UnhandledException: System.ComponentModel.Win32Exception: No application is associated with the specified file for this operation
at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStart...
Moberg asked 14/4, 2010 at 0:51
2
Solved
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...
Showroom asked 3/8, 2010 at 18:55
4
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?
Northman asked 7/7, 2010 at 7:25
3
Solved
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 call...
Aligarh asked 23/3, 2009 at 15:57
2
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 Se...
Amsden asked 3/11, 2008 at 10:19
1
© 2022 - 2024 — McMap. All rights reserved.