Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/03/2010, 08:33
Tik3r
 
Fecha de Ingreso: octubre-2008
Mensajes: 32
Antigüedad: 15 años, 6 meses
Puntos: 0
Respuesta: Ayuda con esta clase en Visual Basic 6.0

Weno ya encontre el error, staba en las propiedades de la clase. Quedarian así:
Código vb:
Ver original
  1. '********************************************
  2. 'Propiedades
  3. '********************************************
  4.  
  5. ' Para la Conexión ADO
  6. Public Property Get Connection() As ADODB.Connection
  7. Connection = m_Connection
  8. End Property
  9.  
  10. 'Establece
  11. Public Property Set Connection(Conexion_ADODB As ADODB.Connection)
  12. Set m_Connection = Conexion_ADODB
  13. End Property
  14.  
  15. Public Property Let Connection(Conexion_ADODB As ADODB.Connection)
  16. Set m_Connection = Conexion_ADODB
  17. End Property
  18.  
  19. ' Propiedad para el ListView
  20. Public Property Get ListView() As ListView
  21.     Set ListView = m_ListView
  22. End Property
  23.  
  24. Public Property Set ListView(v_ListView As ListView)
  25.     Set m_ListView = v_ListView
  26. End Property
  27.  
  28. Public Property Let ListView(v_ListView As ListView)
  29.     Set m_ListView = v_ListView
  30. End Property

Lo pongo x si a alguien le pasa lo mismo :D