After searching this list, I've learned that you supposedly can create a standard windows "Open File" dialog window using:
Set objDialog = CreateObject("MSComDlg.CommonDialog")
However, when I tested this on a WinXP box, it doesn't work.
After more research, I came across this:
Set objDialog = CreateObject("UserAccounts.CommonDialog")
This works on XP, but it firsts prompts a ActiveX security warning, and I don't know if it works on Win98 or Win2k.
Is there a standard function that works on all WinOS?
Many thanks in advance!
Cheers to all!
Set objDialog = CreateObject("MSComDlg.CommonDialog")
However, when I tested this on a WinXP box, it doesn't work.
After more research, I came across this:
Set objDialog = CreateObject("UserAccounts.CommonDialog")
This works on XP, but it firsts prompts a ActiveX security warning, and I don't know if it works on Win98 or Win2k.
Is there a standard function that works on all WinOS?
Many thanks in advance!
Cheers to all!