nombre_archivo = nombre_archivo & ".txt"
query_sql = "SELECT orden,if( isnull(fecI) or fecI='0000-00-00' or fecI='',fecR,fecI) as fecha1,recibio,fecR,if(isnull(hora),'10:00:00',hora) as hora1,fecR FROM tabla1 WHERE fecR>='" & txt_fecha_1.Text & "' and fecR<='" & txt_fecha_2.Text & "' and recibio<>'' "
Set conexion = New ADODB.Connection
Set file = CreateObject("Scripting.fileSystemObject")
If Len(Dir1.Path) > 3 Then
Set archivo = file.openTextFile(Dir1.Path & "" & nombre_archivo, 8, True, 0)
Else
Set archivo = file.openTextFile(Dir1.Path & nombre_archivo, 8, True, 0)
End If
conexion.Open "Provider=MSDASQL.1;Persist Security Info=False;Data Source=myBase"
Set recordset = New ADODB.recordset
recordset.Open query_sql, conexion, adOpenDynamic, adLockOptimistic
Dim noorden As String, fecing As String, podnom As String, podfec As String, podhor As String, fecpod As String
While recordset.EOF = False
orden = recordset(0).Value
fecI = recordset(1).Value
If fecI = "????" Then 'Aki estaba haciendo Pruebas para Depurar el Error.
MsgBox "NAda"
End If