Open it, read it, add something and write it. For example:

VB Code:
  1. Dim iFF As Integer
  2. Dim sFile As String
  3. Dim sContents As String
  4.  
  5.     iFF=FreeFile
  6.     sFile="c:\test.txt"
  7.  
  8.                 'read it
  9.         Open sFile For Input As #iFF
  10.             sContents=Input(LOF(iFF),iFF)
  11.         Close #iFF
  12.  
  13.                 'write what was before and add something new
  14.         Open sFile For Output As #iFF
  15.                         Print #iFF, sContents
  16.             Print #iFF, "something new"
  17.         Close #iFF
edit: or like smuX suggested