Tagged Questions
The common-dialog tag has no wiki summary.
8
votes
5answers
3k views
How can I use the common Save As dialog from VBScript?
I'd like to have my VBScript display the Windows Save As dialog box, but I could not find out how to do it.
Using this code:
Dim sfd
Set sfd = CreateObject("UserAccounts.CommonDialog")
sfd.ShowOpen
...
4
votes
1answer
175 views
How can I change what's on the Places Bar of a common dialog box?
How can I add an item to the Places Bar on the left side of a standard file dialog box (TOpenDialog), where there are usually "Desktop", "My Computer", "My Documents", "My Network", etc.?
Still a ...
3
votes
3answers
131 views
Common Dialog for selecting a SQL Server and getting login details?
My application needs to ask the user what SQL Server to connect to and what credentials to use for the connection, and I was wondering if there's a dialog box out there that somebody has already built ...
1
vote
1answer
69 views
Does the frShowHelp Work Anymore for Common Dialogs in Delphi?
I was trying to add a Help button onto my Open, Save, Find and Print common dialogs in Delphi 2009.
I thought the proper way to do it was to set frShowHelp to true in the Options property of the ...
0
votes
1answer
15 views
Windows 7: Property Handler works in Explorer but Not FileOpenDialog?
Working on writing a custom property Handler for our custom file type in windows 7. I have installed the Windows 7 SDK and built the sample Property Handler. After registering the handler, it works ...
0
votes
2answers
90 views
GetOpenFileName and system function call run time errors c++ win32 api
I've been working on a simple windows program using Visual C++ 2010 express on a 64bit Windows 7 machine. So far I have simple menu with and an editable text area. I'm trying to allow the user select ...
0
votes
1answer
1k views
Internet Explorer 9 (IE9) hangs after closing activex form e.g. common dialog (comdlg32.ocx)
my intranet app allows users to browse & print using the CommonDialog activeX control (comdlg32.ocx). This has worked fine IE6-IE8.
On IE9 client machines the common dialog is displayed as ...
0
votes
3answers
168 views
SetThemeAppProperties disables COM Common Dialogs
Calling SetThemeAppProperties with argument which has flag STAP_ALLOW_CONTROLS unset causes CoCreateInstance for Common Dialogs (or at list File Open Dialog, CLSID_FileOpenDialog) to return error ...
0
votes
1answer
34 views
On what platforms will m_ofn members be valid?
According to this, some members (specifically the one I am interested in is the initial directory member lpstrInitialDir is not supported on Vista.
It is important for me to know if it is supported ...
0
votes
1answer
83 views
How to rename a Network volume's name in WOW64 Apps' Common File Dialog
I'm developing a network redirector like SMB.
Once a volume has been connected, I create 4 registry keys to following nodes.
...
0
votes
1answer
2k views
VB.Net: Looping through all form items, including CommonDialogs
I'm translating my VB.Net application, and I need to loop through all the controls on my form. Using a recursive function such as
Public Sub TranslateControl(ByVal Ctrl As Control)
For Each ...
0
votes
2answers
194 views
Is There a Windows Video Codec Common Dialog?
Does Windows have a common dialog to select video codecs? If there is one, how can I create one in c#? I'm asking because I'm currently developing with a plugin that seems to have included extremely ...
0
votes
4answers
757 views
Is there a standard directory browser dialogue that I can call in MFC that doesn't involve the user having to create directories to specify ones that don't yet exist?
I am working on the bootstrap application of an installer, and I have a dialogue that the user can open to select a different target directory from the given default. Currently, I'm using the ...