Problema al compilar en C#

Iniciado por Abraham20, Febrero 28, 2016, 06:09:34 PM

Tema anterior - Siguiente tema

0 Miembros y 1 Visitante están viendo este tema.

Febrero 28, 2016, 06:09:34 PM Ultima modificación: Marzo 07, 2016, 03:23:40 AM por EPSILON
Hola,
de aqui descargue el codigo fuente de Cb0t 2.70: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
lo compile con Visual C#. Pero cuando trato de entrar en una sala me aparece esto:

El valor no debe ser NULL
Nombre del parametro: value

La información sobre la invocación de la depuración JIT
en lugar de este cuadro de diálogo, consulte el final de este mensaje.

************** Texto de escepcion **************
System.ArgumentNullException: El valor no debe ser NULL.
Nombre del parametro: value
   en System.Windows.Forms.ImageList.ImageCollection.Add(Image value)
   en cb0t_chat_client_v2.ChatContainerTabPage..ctor(ChannelObject cObj, Int32 tab_ident, Int32 spawn_time) in C:\Users\Fam. Schenker\Downloads\Neuer Ordner\cb0t chat client v2\ChatContainerTabPage.cs:Linea 107.
   en cb0t_chat_client_v2.Chat.OnChannelClicked(ChannelObject cObj) in C:\Users\Fam. Schenker\Downloads\Neuer Ordner\cb0t chat client v2\Chat.cs:Linea 310.
   en cb0t_chat_client_v2.ChannelList.OnMouseDoubleClick(MouseEventArgs e) in C:\Users\Fam. Schenker\Downloads\Neuer Ordner\cb0t chat client v2\ChannelList.cs:Linea 324.
   en System.Windows.Forms.ListView.WndProc(Message& m)
   en System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
   en System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
   en System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


************** Asamblados cargados **************
mscorlib
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8669 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
mscorlib.resources
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8669 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
cb0t
    Assembly-Version: 1.0.0.0.
    Win32-Version: 1.0.0.0.
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
System
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8662 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
System.Windows.Forms
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8662 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
System.Drawing
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8681 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
System.Configuration
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8662 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
System.Xml
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8679 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
Interop.WMPLib
    Assembly-Version: 1.0.0.0.
    Win32-Version: 1.0.0.0.
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
AxInterop.WMPLib
    Assembly-Version: 1.0.0.0.
    Win32-Version: 1.0.0.0.
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------
System.Windows.Forms.resources
    Assembly-Version: 2.0.0.0.
    Win32-Version: 2.0.50727.8662 (QFE.050727-8600).
    CodeBase: You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
----------------------------------------

************** Depurador JIT **************
Para habilitar la depuración JIT (Just-In-Time), tiene que establecerse en el
Archivo de configuración de aplicación o del equipo
(Machine.config) el valor jitDebugging en la sección System.Windows.Forms.
La compilación debe compilarse con la depuración activada.
Por ejemplo:

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

Cuando esté habilitada la depuración JIT, todas las excepciones que no fueron tratadas
se neviaran al depurador JIT, que esta registrado en el
Equipo y el cual no se ha tratado en este cuadro de diálogo.


Trate de analisar palabra por palabra. Pero aun asi no lo entiendo.
Que tengo que hacer?
Tambien busque en internet pero no encontre nada
me ayudan por favor?

gracias;
de veras se los agradezco de antemano

PD.: Creo que el error significa lo siguiente: En la línea 107 de ChatContainerTabPage.cs se intenta añadir a un ImageCollection una imagen con el valor null.
Pero no estoy seguro.
Ademas, si es asi no se que hacer.

Narciso?
No te cansas de crear cuentas y de que te banneemos tantas veces?
Crees que podes venir con tus amenazas a hacer lo que queres a esta comunidad?

Ya no sos bienvenido a Underc0de.

Regresa cuando madures

Saludos
ANTRAX


Febrero 28, 2016, 07:02:20 PM #2 Ultima modificación: Febrero 28, 2016, 07:04:52 PM por blackdrake

PD:

You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
Regresa cuando madures

Eso no es la semana que viene :D



Marzo 02, 2016, 06:38:56 PM #3 Ultima modificación: Marzo 02, 2016, 06:41:19 PM por Nobody
You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login