Ok, i know this must've been posted a million times in VB but I'm a new C# programmer and frankly I have no clue as how to do this in C#, so please help me out
How do I turn this into a Folder browsing dialog? This only selects existing files. I've seen the VB code involved for this and it's, for a lack of a better word, ridiculously complex! Isn't there a built-in method or class for this in C#? Thanks in advance!Code:private void button3_Click(object sender, System.EventArgs e) { OpenFileDialog openFileDialog1 = new OpenFileDialog(); openFileDialog1.ShowDialog(); textBox1.Text = openFileDialog1.FileName; }





Reply With Quote