Problema con el listview

08/02/2006 - 13:17 por Pancho | Informe spam
tengo el siguiente codigo

Me.ListView1.ListItems.Clear
'CARGAR CARGOS
Set cmd = New Command
Set rs = New Recordset
With cmd
.CommandType = adCmdStoredProc
.CommandText = "sp_con_mant"
Set .ActiveConnection = cnn
.Parameters(1).Value = "busquedafilesporsol"
'.Parameters(2).Value = Me.txtSolicitud.Text
Set rs = .Execute
End With
Dim list As ListItem
Dim nList As ListItems

Do While Not rs.EOF
Set list = Me.ListView1.ListItems.Add(, , rs("arc_desc"))
With list
.SubItems(1) = rs("arc_nombre") & "." & rs("arc_extension")
.Tag = rs("arc_id_arc")
End With
rs.MoveNext
Loop
Set rs = Nothing
Set cmd = Nothing
end sub

El problema que tengo es el siguiente...

cuando intenta ejecutar la siguiente linea:
Set list = Me.ListView1.ListItems.Add(, , rs("arc_desc"))
me dice "Error 13, no coinciden los tipos..."

¿a alguien se le ocurre porque sale este error?

Gracias

Preguntas similare

Leer las respuestas

#1 pedroborbri
08/02/2006 - 13:29 | Informe spam
Puede que tengas una celda numerica teniendo que ser de texto o al
contrario
Respuesta Responder a este mensaje
#2 Pancho
08/02/2006 - 13:32 | Informe spam
es un string...
de hecgo le coloco cstr(rs("..."))...

y sin embargo me lanza el error...
email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida