
20/05/2008, 07:20
|
 | Moderador | | Fecha de Ingreso: abril-2005 Ubicación: In this planet
Mensajes: 15.720
Antigüedad: 20 años Puntos: 839 | |
Respuesta: VBS: ordenar por fecha de creacion Cita:
Iniciado por guif si. me da un error: "ByRef argument type mismatch"
en la linea:
s = OrderDate(s, f1.Name & " (" & f1.DateLastModified & ")" & vbCrLf)
igualmente, si quiero que la salida sea por un listbox pondria esto no?
listbox1.additem OrderDate([s, f1.Name & " (" & f1.DateLastModified & ")" Coloca:
Código:
(ByVal s As String, ByVal NewData As String)
en vez de:
Código:
(s As String, NewData As String)
|