tope = cbousu.ListIndex + 1 'Numero de Registro a eliminar
con = 1
Open ruta & "Users.dat" For Input As #1
Do Until EOF(1)
If con = tope Then
Input #1, j, k, l, m
Else
Input #1, j, k, l, m
Open ruta & "Users2.dat" For Append As #2
Write #2, j, k, l, m
Close #2
End If
con = con + 1
Loop
Close #1
Kill ruta & "Users.dat"
Name ruta & "Users2.dat" As ruta & "Users.dat"