lol sorted.

VB Code:
  1. Private Sub Form_Load()
  2.  
  3.     Dim handle As Integer
  4.     Dim file As String
  5.    
  6.     handle = FreeFile
  7.     Open "C:\Documents and Settings\Carl\Desktop\index.htm" For Input As handle
  8.         Do While Not EOF(handle)
  9.             file = Input(LOF(handle), #handle)
  10.             Text1.TextRTF = file
  11.         Loop
  12.     Close #handle
  13.  
  14. End Sub

Thanks guys