On the Open File Dialog box, there are several options you can specify.
I re-wrote the function to my own tastes, very very close to what the Commdlg32.inc has anyway.
One of the things I want is to be able to select MULTIPLE files.
So I add
%OFN_ALLOWMULTISELECT = &H00000200???
And I get the old 16 bit dialog box, where all files are on the left, folder on the right, drives on the bottom...
How do I get a "Normal" open file dialog box with the ability to select multipel files???
Paint Shop Pro uses it, so I know it can be done, question is how???
Currently here's my call, and consider it the same as the .INC file's call, because there's only one minor difference..
If I add that %OFN_ALLOWMULTISELECT THEN it goes to the Old style dialog box 
Scott
------------------
Scott
mailto:[email protected][email protected]</A>
I re-wrote the function to my own tastes, very very close to what the Commdlg32.inc has anyway.
One of the things I want is to be able to select MULTIPLE files.
So I add
%OFN_ALLOWMULTISELECT = &H00000200???
And I get the old 16 bit dialog box, where all files are on the left, folder on the right, drives on the bottom...
How do I get a "Normal" open file dialog box with the ability to select multipel files???
Paint Shop Pro uses it, so I know it can be done, question is how???

Currently here's my call, and consider it the same as the .INC file's call, because there's only one minor difference..
Code:
g_Result = MyOpenFileDialog(ByVal hDLg,_ ByVal Caption,_ FileSpec,_ g_CurrWorkingDir,_ ByVal Filter,_ ByVal DefExtension,_ %OFN_FILEMUSTEXIST Or %OFN_HIDEREADONLY Or %OFN_LONGNAMES)

Scott
------------------
Scott
mailto:[email protected][email protected]</A>
Comment