Mensagens de erro estranhas ao usar aplicativos .NET

0

Eu tenho revivido muitas mensagens de erro ultimamente, depois que instalei o framework XNA alguns dias atrás. Os aplicativos ainda são executados, e alguns deles não são incomodados por esses erros, mas outros aplicativos não poderão funcionar / obter essa mensagem de erro ao executar funções dentro do aplicativo.

Veja a mensagem de erro:

See the end of this message for details on invoking 
just-in-time (JIT) debugging instead of this dialog box.

************** Exception Text **************
System.NullReferenceException: Object reference not set to an instance of an object.
   at Windows_Theme_Installer.Main.bApplyTheme_Click(Object sender, EventArgs e)
   at System.Windows.Forms.Control.OnClick(EventArgs e)
   at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
   at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
   at System.Windows.Forms.Control.WndProc(Message& m)
   at System.Windows.Forms.ButtonBase.WndProc(Message& m)
   at System.Windows.Forms.Button.WndProc(Message& m)
   at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Loaded Assemblies **************
mscorlib
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.5466 (Win7SP1GDR.050727-5400)
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework64/v2.0.50727/mscorlib.dll
----------------------------------------
Windows Theme Installer
    Assembly Version: 1.0.0.0
    Win32 Version: 
    CodeBase: file:///C:/Users/Ben/Documents/deskmod%20tools/Windows%20Theme%20Installer/Windows%20Theme%20Installer%20v%201.1.exe
----------------------------------------
Microsoft.VisualBasic
    Assembly Version: 8.0.0.0
    Win32 Version: 8.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
----------------------------------------
System
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.5467 (Win7SP1GDR.050727-5400)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
----------------------------------------
System.Windows.Forms
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.5468 (Win7SP1GDR.050727-5400)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
----------------------------------------
System.Drawing
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.5467 (Win7SP1GDR.050727-5400)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
----------------------------------------
System.Runtime.Remoting
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Runtime.Remoting/2.0.0.0__b77a5c561934e089/System.Runtime.Remoting.dll
----------------------------------------
Accessibility
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4927 (NetFXspW7.050727-4900)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Accessibility/2.0.0.0__b03f5f7f11d50a3a/Accessibility.dll
----------------------------------------
System.Xml
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.5420 (Win7SP1.050727-5400)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
----------------------------------------

************** JIT Debugging **************
To enable just-in-time (JIT) debugging, the .config file for this
application or computer (machine.config) must have the
jitDebugging value set in the system.windows.forms section.
The application must also be compiled with debugging
enabled.

For example:

<configuration>
    <system.windows.forms jitDebugging="true" />
</configuration>

When JIT debugging is enabled, any unhandled exception
will be sent to the JIT debugger registered on the computer
rather than be handled by this dialog box.

** EDIT: ** Eu resolvi o problema; Como se constata, os aplicativos que eu estava tentando usar por algum motivo precisavam de Privilégios de Administrador, apesar deles não precisarem disso a qualquer momento antes.

    
por Ben Franchuk 21.07.2013 / 14:48

1 resposta

1

Sempre que houver uma exceção não tratada em um aplicativo .NET e não houver manipuladores padrão definidos pelo aplicativo ou pelo administrador da máquina (como Windbg ou Visual Studio), o manipulador de exceção não tratada do .NET tratará essa exceção e mostrará uma caixa de mensagem para o usuário perguntando se deseja continuar ou terminar.

Se o usuário disser ignorar, o aplicativo pode ou não funcionar corretamente. Você precisará configurar um depurador como o Visual Studio ou o WinDbg e fazer um dump ou fazer uma depuração ao vivo e descobrir o que exatamente mudou.

A pilha de chamadas mostra que a exceção estava em uma classe personalizada chamada:

Windows_Theme_Installer.Main.bApplyTheme_Click
  1. A instalação do framework XNA também pode ter exposto um bug no .NET Framework. Então, para verificar isso, basta executar o Windows Update e ver se corrige o problema.

  2. Senão, o XNA pode ter instalado uma versão atualizada da estrutura que expôs agora um defeito em seu código. A depuração é a única solução aqui.

  3. Uma chance muito rara é que sua RAM ou disco rígido tenham setores defeituosos. Isso pode causar falhas aleatórias. No entanto, ele se manifestará em aplicativos aleatórios e não em um aplicativo específico. Execute o fdisk para verificar seu disco rígido e o memtest86 para testar sua RAM.

por 21.07.2013 / 15:15