Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * -> http://csharpcodewhisperer.blogspot.com
- */
- string OpenFileHandler()
- {
- if(openFileDialog1.ShowDialog() == DialogResult.OK) {
- return openFileDialog1.FileName;
- } else {
- return string.Empty;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement