Here it is, I went back and looked and found that the real issue is appending to the file prior to loading it into the richtextbox:
Private Sub Command1_Click()
RichTextBox2.SaveFile "C:\VB
Projects\Test\RichTxtBox\InputFile.rtf", rtfRTF
End Sub
Private Sub Form_Load()
RichTextBox1.LoadFile "C:\VB Projects\Test\RichTxtBox\InputFile2.rtf", rtfRTF
Call Timer1_Timer
End Sub
Private Sub Timer1_Timer()
Dim InFile As String
Dim OutFile As String
DoEvents
InFile = "C:\VB Projects\Test\RichTxtBox\InputFile.rtf"
OutFile = "C:\VB Projects\Test\RichTxtBox\InputFile2.rtf"
FileCopy InFile, OutFile
'Now, the file is copied but it over writes the old file
'Cannot figure out how to append to the file so that the
'old text is not lost
RichTextBox1.LoadFile OutFile, rtfRTF
Timer1.Interval = 2001
End Sub