MultiThreading Error in C#
-
Hey When I run my application on windows 2000 I get this exception. But I can't even catch the error! It's something in windows (don't know). The strange thing is that I can run the application perfect on a windows XP computer... And when I remove all my threads from my application it works fine to :doh: My application has 1 thread for the GUI and on for the domain (I just start a threadpoll in my panel which calls my facade to do something). On windows XP it works but not on the rest :( Thx for the help! &Collecting interfaces... Error processing .Ink File.System.Runtime.InteropServices.COMException (0x80010105): The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT)) at InterfaceCollector.domain.DAL.IShellLinkA.GetPath( StringBuilder pszFile, Int32 cchMaxPath, WIN32_FIND_DATAA& pfd, SLGP_FLAGS fFlags) at InterfaceCollector.domain.DAL.ShellShortcut.get_Pa th() in C:\Documents and Settings\AWYDZ\My Documents\Visual Studio 2005\Projects\Data Collector II\Data Collector II\domain\DAL\MainFlow\ShellShortcut.cs:line 80 at InterfaceCollector.domain.DAL.WindowsSystemScan.pr ocessInk(FileInfo nextFile) in C:\Documents and Settings\AWYDZ\My Documents\Visual Studio 2005\Projects\Data Collector II\Data Collector II\domain\DAL\MainFlow\WindowsSystemScan.cs:line 172 &Collecting interfaces...
-
Hey When I run my application on windows 2000 I get this exception. But I can't even catch the error! It's something in windows (don't know). The strange thing is that I can run the application perfect on a windows XP computer... And when I remove all my threads from my application it works fine to :doh: My application has 1 thread for the GUI and on for the domain (I just start a threadpoll in my panel which calls my facade to do something). On windows XP it works but not on the rest :( Thx for the help! &Collecting interfaces... Error processing .Ink File.System.Runtime.InteropServices.COMException (0x80010105): The server threw an exception. (Exception from HRESULT: 0x80010105 (RPC_E_SERVERFAULT)) at InterfaceCollector.domain.DAL.IShellLinkA.GetPath( StringBuilder pszFile, Int32 cchMaxPath, WIN32_FIND_DATAA& pfd, SLGP_FLAGS fFlags) at InterfaceCollector.domain.DAL.ShellShortcut.get_Pa th() in C:\Documents and Settings\AWYDZ\My Documents\Visual Studio 2005\Projects\Data Collector II\Data Collector II\domain\DAL\MainFlow\ShellShortcut.cs:line 80 at InterfaceCollector.domain.DAL.WindowsSystemScan.pr ocessInk(FileInfo nextFile) in C:\Documents and Settings\AWYDZ\My Documents\Visual Studio 2005\Projects\Data Collector II\Data Collector II\domain\DAL\MainFlow\WindowsSystemScan.cs:line 172 &Collecting interfaces...
That is usually either a hardware error or a pointer error. With C# I doubt you are reading past a pointers allowed area.
File Not Found
-
That is usually either a hardware error or a pointer error. With C# I doubt you are reading past a pointers allowed area.
File Not Found
-
System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt is what I am going on. When I write c++ code I get this error from writing to memory I don't have access to (oops). So since you are using a COM component there could likely be differences across the OS version. Beyond that I will keep my mouth shut because I don't have any other ideas.
File Not Found
-
System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt is what I am going on. When I write c++ code I get this error from writing to memory I don't have access to (oops). So since you are using a COM component there could likely be differences across the OS version. Beyond that I will keep my mouth shut because I don't have any other ideas.
File Not Found