投稿者 魔界の仮面弁士  (社会人) 投稿日時 2009/9/15 20:13:33
TextBox1.Text ではなく、ListBox1.Items.Add や、
TextBox1.AppendText を使ってみてください。

For Each fname In OpenFileDialog1.FileNames
   TextBox1.Text = fname
Next
これだと、ループのたびに Text を「置き換え」ているので、
最終的に残るのは、最後のループ結果のみになってしまいますよ。