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:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click With OpenFileDialog1 .ShowReadOnly = False .Filter = "rec Files (rec*.txt)|rec*.txt|All Files (*.*)|*.*" .FilterIndex = 1 .InitialDirectory = "C:\test\db\" .ShowReadOnly = False .CheckFileExists = True .Title = "Select a data set to analyse...." .ShowDialog() End With End Sub
