473,472 Members | 1,856 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

AccessViolationException: Attempted to read or write protected memory...

Hi,

My C# app throws the following exception:

System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

From what I read so far I found that the problem can be connected to P/Invoke and that the places at which this exception is thrown might not reflect the actual problem. In my case, the exception is thrown, when I try to minimise my main window to the system tray and to hide the window from the taskbar:

public void Minimize()
{
this.WindowState = FormWindowState.Minimized;
this.ShowInTaskbar = false; // Exception!
this.Visible = false;
this.exit = true;
}

Here is more detail:

1. I removed all code that deals with P/Invoke, all DLLImports and so on to make sure I am using only fully managed code.

2. I turned off any virus scanner. This could be one possible source of the problem.

3. My configuration is: VS 2005 (SP1 and Vista update), C#, .NET 2, Vista Business.

4. Even though my app contains code to make a web service call, such code will not be called in the scenario that causes the exception. I read that remoting can be a source of the problem.

5. I can reproduce the problem on my machine. Below is a Stack Trace and a Call Stack output. It starts in an OnClosing event that I connect to and then follows a call to the Minimize method before leaping into .NET with ShowInTaskbar (the idea is to cancel the closing of the form in this scenario, to minimize it and to show a tray icon). What I find odd, is the fact that the TreeView Control is involved in the .NET code and that a TreeNode is set in this stack trace. An implementation of TreeView.afterSelect shows that this event will indeed be fired while ShowInTaskbar has been called. I mention this because in the scenario, in which the exception is thrown, I have to expand a few tree node and to send the app to the system tray one or two times until the exception is thrown.

Any idea what could cause the exception?

Thanks and best wishes,

Marc.

Stack Trace from Exception dialog:

" at System.Windows.Forms.UnsafeNativeMethods.CallWindo wProc(IntPtr wndProc, IntPtr hWnd, Int32 msg, IntPtr wParam, IntPtr lParam)\r\n at System.Windows.Forms.NativeWindow.DefWndProc(Messa ge& m)"

Call Stack:

System.Windows.Forms.dll!System.Windows.Forms.Nati veWindow.DefWndProc(ref System.Windows.Forms.Message m = {msg=0x110b hwnd=0x1110704 wparam=0x9
lparam=0x3fb6cf0 result=0x0}) + 0x94 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.DefWndProc(ref System.Windows.Forms.Message m) + 0xc bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.WndProc(ref System.Windows.Forms.Message m) + 0x90b bytes
System.Windows.Forms.dll!System.Windows.Forms.Tree View.WndProc(ref System.Windows.Forms.Message m) + 0xedf bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.ControlNativeWindow.OnMessage(ref System.Windows.Forms.Message m) + 0xd bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.ControlNativeWindow.WndProc(ref System.Windows.Forms.Message m) + 0xd6 bytes
System.Windows.Forms.dll!System.Windows.Forms.Nati veWindow.DebuggableCallback(System.IntPtr hWnd, int msg = 4363, System.IntPtr wparam, System.IntPtr lparam) + 0x75 bytes
[Native to Managed Transition]
[Managed to Native Transition]
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.SendMessage(int msg, int wparam, System.IntPtr lparam) + 0x44 bytes
System.Windows.Forms.dll!System.Windows.Forms.Tree View.SelectedNode.set(System.Windows.Forms.TreeNod e value) + 0x74 bytes
System.Windows.Forms.dll!System.Windows.Forms.Tree View.OnHandleCreated(System.EventArgs e) + 0x331 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.WmCreate(ref System.Windows.Forms.Message m) + 0x40 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.WndProc(ref System.Windows.Forms.Message m) + 0x447 bytes
System.Windows.Forms.dll!System.Windows.Forms.Tree View.WndProc(ref System.Windows.Forms.Message m) + 0xedf bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.ControlNativeWindow.OnMessage(ref System.Windows.Forms.Message m) + 0xd bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.ControlNativeWindow.WndProc(ref System.Windows.Forms.Message m) + 0xd6 bytes
System.Windows.Forms.dll!System.Windows.Forms.Nati veWindow.DebuggableCallback(System.IntPtr hWnd, int msg = 1, System.IntPtr wparam, System.IntPtr lparam) + 0x75 bytes
[Native to Managed Transition]
[Managed to Native Transition]
System.Windows.Forms.dll!System.Windows.Forms.Unsa feNativeMethods.CreateWindowEx(int dwExStyle, string lpszClassName, string lpszWindowName, int style, int
x, int y, int width, int height,
System.Runtime.InteropServices.HandleRef hWndParent,
System.Runtime.InteropServices.HandleRef hMenu,
System.Runtime.InteropServices.HandleRef hInst, object pvParam) + 0x45 bytes
System.Windows.Forms.dll!System.Windows.Forms.Nati veWindow.CreateHandle(System.Windows.Forms.CreateP arams
cp) + 0x241 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.CreateHandle() + 0x16a bytes
System.Windows.Forms.dll!System.Windows.Forms.Tree View.CreateHandle() + 0x6c bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x11b bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.OnParentHandleRecreated() + 0xe4 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x207 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.OnParentHandleRecreated() + 0xe4 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x207 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.OnParentHandleRecreated() + 0xe4 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x207 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.OnParentHandleRecreated() + 0xe4 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x207 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.OnParentHandleRecreated() + 0xe4 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x207 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.OnParentHandleRecreated() + 0xe4 bytes
System.Windows.Forms.dll!System.Windows.Forms.Cont rol.RecreateHandleCore() + 0x207 bytes
System.Windows.Forms.dll!System.Windows.Forms.Form .RecreateHandleCore() + 0x25e bytes
System.Windows.Forms.dll!System.Windows.Forms.Form .ShowInTaskbar.set(bool value) + 0xdc bytes
backup.exe!Adonec.Backup.MainForm.Minimize() Line 392 + 0x9 bytes C#
backup.exe!Adonec.Backup.MainForm.OnClosing(System .ComponentModel.CancelEventArgs e = {System.Windows.Forms.FormClosingEventArgs}) Line 367 + 0x7 bytes C#

Aug 6 '07 #1
1 4019
Marc Bartsch schrieb:
Hi,

My C# app throws the following exception:

System.AccessViolationException: Attempted to read or write protected
memory. This is often an indication that other memory is corrupt.

From what I read so far I found that the problem can be connected to
P/Invoke and that the places at which this exception is thrown might not
reflect the actual problem. In my case, the exception is thrown, when I
try to minimise my main window to the system tray and to hide the window
from the taskbar:
After further tests, I found out that disabling Visual Styles in my application seems to get rid of the problem:

[STAThread]
static void Main(string[] args)
{
//Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(fals e);
MainForm mf = new MainForm();

Application.Run(mf);
}

Without visual styles I cannot reproduce the exception anymore. With visual styles, it is reproducable in Debug and Release configuration. This may not be the actual problem and disabling visual styles may only mask the real problem, but this exception seems very hard to track down.

Does anyone know whether visual styles could have something to do with an AccessViolationException?

Best wishes,

Marc.
Aug 7 '07 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: James Arnold | last post by:
I am getting the following error message in my WinForms project: --- An unhandled exception of type 'System.AccessViolationException' occurred in System.Windows.Forms.dll Additional...
2
by: adypoly | last post by:
Hi guys... I am having a typical problem in using one of the native dll in C# I'll explain what am trying to do, I've a dll written in C language which i am trying to include in my C# project,...
1
by: =?Utf-8?B?SmFzb24gUm9kbWFu?= | last post by:
I have a wierd problem in my application where any call to Assembly.GetFullName of the currently running assembly fails with an AccessViolationException. This only happens on windows vista, all...
12
by: rmiller407 | last post by:
I am getting an AccessViolationException when calling an old legacy fortran dll from c# in vs2008 express, but the same code worked fine in vs2005. If I create a vs2005 c# wrapper dll to call...
5
by: Danny Ni | last post by:
Hi, I need help with the following exceptions, it happens to my dev machine and live server every now and then, most of the times they happen after I recompile the solution on my dev machine or...
2
by: mcfly1204 | last post by:
Attempted to read or write protected memory. This is often an indication that other memory is corrupt. I have looked into the issue with varied results. With ASP.NET applications, most people can...
3
by: sriram347 | last post by:
Hi I am a newbie to ASP.NET. I developed a web page (project type is web application) and I keep getting this error. B]Error message : "System.AccessViolation Exception attempted to read or...
5
by: craig1231 | last post by:
I have a problem trying to pass a structure to an unmanaged c++ DLL from C#. When I call PCSBSpecifyPilotLogon from C#, it throws an AccessViolationException This is what I have... The...
3
by: maneshborase | last post by:
Hi friends, I am facing one serious problem in my application. I am trying to open dicom image file (.dcm) has size around 400 MB. But I am getting and unhandy exceptions, Some time, ...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.