投稿者 るきお  (社会人) 投稿日時 2009/8/7 08:22:33
つまり、こうです。
  
Private Sub Form1_Load(ByVal sender As System.ObjectByVal e As System.EventArgs) Handles MyBase.Load

    Dim fileName As String = My.Application.CommandLineArgs(0)
    Dim content As String = IO.File.ReadAllText(fileName)

    TextBox1.Text = content

End Sub