I can’t use OpenFileDialog in my application.
As an alternative I use GetOpenFileName() method:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace Reader
{
[StructLayout(LayoutKind.Sequential, CharSet = CharSet.Auto)]
public class OpenFileName
{
public int lstructSize;
public IntPtr hwndOwner;
public IntPtr hInstance;
public string lpstrFilter = null;
public string lpstrCustomFilter = null;
public int lMaxCustomFilter;
public int lFilterIndex;
public string lpstrFile = null;
public int lMaxFile = 0;
public string lpstrFileTitle = null;
public int lMaxFileTitle = 0;
public string lpstrInitialDir = null;
public string lpstrTitle = null;
public int lFlags;
public ushort nFileOffset;
public ushort nFileExtension;
public string lpstrDefExt = null;
public int lCustData;
public int lpfHook;
public int lpTemplateName;
}
public class OpenDialog
{
[DllImport("Comdlg32.dll",CharSet = CharSet.Auto)]
public static extern bool GetOpenFileName([In, Out] OpenFileName ofn);
}
}
And then use it in OnClick event of a button like this:
OpenFileName qofn = new OpenFileName();
qofn.lstructSize = Marshal.SizeOf(qofn);
qofn.lpstrFile = "";
qofn.lMaxFile = 256;
qofn.lpstrFileTitle = "";
qofn.lMaxFileTitle = 64;
qofn.hInstance = this.Handle;
source.Text = "Wait...";
if (OpenDialog.GetOpenFileName(qofn))
{
MessageBox.Show("ofn.file: " + qofn. lpstrFile );
}
When application runs and button is clicked and I try to open file this is what happens:
1st try:
it returns the path to my file, but instead of
c:\dira\dirb\dirc\filename.ext
I have
c:\dira\dirb\dircfilename.ext
without ‘\’ before the name of the file
2nd try
Everything is OK
next:
there are random crashes, e.g. random access violation, or GUI freezes and application’s process can’t be kiled even in task manager, or other errors.
Usually dialog works 2-3 times before application crashes for good.
What is wrong with my code?
EDIT:
I can’t use OpenFileDialog. I’m using WinPE 4.0 (Windows Assessment and Deployment Kit ADK). When I try OpenFileDIalog, it throws run time error 80040111. It’s probably because the core is not supported (just like Server Core doesn’t support OpenFileDialog, the error’s the same). Probably on WinPE 4.0 they use GetOpenFileName in applications such as notepad. And it works for them.
OK, I found this microsoft sample and it works: