Vra

I'm using an OpenFileDialog and I would like to only show files with NO extension,

I've tried this but doesn't seem to work:

    OpenFileDialog ofd = new OpenFileDialog();
    ofd.Filter = "DICOMDIR Files|" + null;
    ofd.FileName = string.Empty;
    ofd.Multiselect = false;

any ideas?

Was dit nuttig?

Oplossing

Write your own custom dialog. No other way to do it.

Gelisensieer onder: CC-BY-SA met toeskrywing
Nie verbonde aan StackOverflow
scroll top