I've seen in the API forum that it is possible to force the Open Dialog into details view.
Is there anything in .NET to do this?

This is what I have so far
VB Code:
  1. Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
  2.         With OpenFileDialog1
  3.             .ShowReadOnly = False
  4.             .Filter = "rec Files (rec*.txt)|rec*.txt|All Files (*.*)|*.*"
  5.             .FilterIndex = 1
  6.             .InitialDirectory = "C:\test\db\"
  7.             .ShowReadOnly = False
  8.             .CheckFileExists = True
  9.             .Title = "Select a data set to analyse...."
  10.             .ShowDialog()
  11.         End With
  12.     End Sub