How do I put text from a notepad .txt file into a text box on my form?

I am using this code

VB Code:
  1. Dim iFileNum
  2. Dim txtInput
  3.  
  4. iFileNum = FreeFile
  5. Open "C:\Test.txt" For Input As iFileNum
  6. Print #iFileNum, txtInput
  7. Close iFileNum
  8.  
  9. Text1.Text = txtInput

but it says that its a bad file mode. how do I fix this?