Dim Fso As New FileSystemObject
Dim txtfile As TextStream
Dim txtlines As Long
If Fso.FileExists(DesDrive + "dong.txt") Then
Set txtfile = Fso.OpenTextFile(DesDrive + "dong.txt")
Do Until txtfile.AtEndOfStream
txtfile.SkipLine
txtlines = txtlines + 1
Loop
end iF