
Index (ZeroBased) must be greater than or equal to zero and less than the size of the argument list
y al parecer este es el codigo que lo esta marcando
Public Sub LlenarGridPorFechas()
Try
AddParameter("@Fecha_Ini_Subasta", dtp_Fecha_Inicio.Value.Date, 5)
AddParameter("@Fecha_Fin_Subasta", dtp_Fecha_Fin.Value.Date, 5)
Dim dv As DataView = List("SP_CONSULTA_BusquedaDeSubastasPorFechas")
dgd_Subastas.DataSource = dv
TABLESTYLESUBASTAS()
'Llenacampos()
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Estoy tratando de hacer una busqueda por fechas con un date time picker y le mando unos parametros a un stored procedure en Sql Server 2000, los parametros son la fecha de inicio y la fecha de fin, y en el stored utilizo un between
Espero que alguien me pueda ayudar poruqe es un poquito urgente