|
-
Oct 22nd, 2002, 08:19 PM
#1
Thread Starter
New Member
commondialog.flags
on my win98 system, using vb6, if the commondialog.flags contains 512 to allow for multiple file selection in showopen, the showopen dialog box reverts to a win3.2 version with the 8.3 filenames. undoing flag 512 allows for a win98 version, alas with only single file functionality. what gives?
-
Oct 22nd, 2002, 09:09 PM
#2
PowerPoster
That will happen if you won't specify cdlOFNExplorer flag:
VB Code:
With CommonDialog1
.Flags = cdlOFNAllowMultiselect Or cdlOFNExplorer
.ShowOpen
End With
-
Oct 22nd, 2002, 09:10 PM
#3
Stuck in the 80s
I've run into this problem before too. Fix:
VB Code:
CD.Flags = cdlOFNExplorer Or cdlOFNAllowMultiselect Or cdlOFNHideReadOnly
Note: cdlOFNHideReadOnly is not required.
-
Oct 22nd, 2002, 09:11 PM
#4
Stuck in the 80s
Bah, you beat me Roy
-
Oct 22nd, 2002, 09:16 PM
#5
PowerPoster
OK, but I'm not competing. ;-)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|