Sub ReverseTextFileShowInListBox()
Dim X As Long, FileNum As Long, TotalFile As String, Lines As Variant
FileNum = FreeFile
Open "[B][COLOR="#FF0000"]C:\Temp\ReverseMe.txt[/COLOR][/B]" For Binary As [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=FileNum]#FileNum[/URL]
TotalFile = Space(LOF(FileNum))
Get [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=FileNum]#FileNum[/URL] , , TotalFile
Close [URL=https://www.mrexcel.com/forum/usertag.php?do=list&action=hash&hash=FileNum]#FileNum[/URL]
Lines = Split(TotalFile, vbCrLf)
For X = UBound(Lines) To 0 Step -1
ListBox1.AddItem Lines(X)
Next
End Sub