Try changing "strTextLines" to a Variant data type instead of a String array, i.e.
VB Code:
  1. Private Sub Command1_Click()
  2. Dim intFree As Integer
  3. Dim strReadText As String
  4. 'Dim strTextLines() As String
  5. Dim strTextLines As Variant
  6.  
  7. intFree = FreeFile
  8. Open "C:\SomeFile.txt" For Binary As #intFree
  9.     strReadText = Space$(LOF(intFree))
  10.     Get #intFree, , strReadText
  11. Close #intFree
  12.  
  13. ' Create array of text lines from the file...
  14. strTextLines = SplitEx(strReadText, vbNewLine)
  15.  
  16. Text1.Text = strTextLines(0) ' First line...
  17. Text2.Text = strTextLines(1) ' Second line...
  18. End Sub
Regards,

- Aaron.