Are long file names and Multiselect mutually exclusive in the Common Dialog control? I have tried the following flags:
objCommonControl.flags = cdlOFNAllowMultiselect AND cdlOFNLongNames
objCommonControl.flags = cdlOFNAllowMultiselect OR cdlOFNLongNames
The first syntax displays the long filenames, but disallows Multiselect, while the second syntax allows Multiselect, but displays only the short filenames. I have had the same results bypassing the CommonControl Obj, and writing to the API using a wrapper function.
I want a File Open dialog that displays long filenames AND allows Multiselect. Thanks