common-dialog

Windows 7: Property Handler works in Explorer but Not FileOpenDialog?

给你一囗甜甜゛ 提交于 2019-12-04 09:34:53
问题 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 great in Windows Explorer, but in the common file open dialog the custom values do not appear. Does anyone know if there is something special I need to do to get the properties to appear in common dialogs? Explorer: File Open Dialog: 回答1: OK, figured it out. Here is the deal. My app is 32 bit and I

Windows 7: Property Handler works in Explorer but Not FileOpenDialog?

元气小坏坏 提交于 2019-12-03 02:37:09
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 great in Windows Explorer, but in the common file open dialog the custom values do not appear. Does anyone know if there is something special I need to do to get the properties to appear in common dialogs? Explorer: File Open Dialog: OK, figured it out. Here is the deal. My app is 32 bit and I am on a x64 system. Because the PropertyHandler is written in x64 to support the shell out of process. But

Register comdlg32.dll gets Regsvr32: DllRegisterServer entry point was not found

这一生的挚爱 提交于 2019-11-28 04:04:56
I have Windows 7, 64-bit. I'm trying to register a .dll (comdlg32.dll) using regsvr32. But I get an error that says the dll is read but the DLLRegistryServer entry point is not found. I have run the command under both System32 and SysWOW64 and I have run my commands with "Run As Administrator". My old MSComDlg.CommonDialog component is no longer working with 64-bit. Run this command: dumpbin /exports comdlg32.dll You'll likely see that comdlg32.dll doesn't contain a DllRegisterServer method. Hence RegSvr32.exe won't work. That's your answer. ComDlg32.dll is a a system component. (exists in

How can I use the common Save As dialog from VBScript?

核能气质少年 提交于 2019-11-27 14:01:17
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 I can get an Open dialog, but there is no ShowSave method for this object (as there seems to be for a similar object in Visual Basic non-script). I searched StackOverflow and googled for "[vbscript] save dialog" (and with "Windows Script Host"), but I only found threads about accessing common dialogs from web pages and a solution for the BrowseForFolder dialog and nothing really about calling the

Register comdlg32.dll gets Regsvr32: DllRegisterServer entry point was not found

十年热恋 提交于 2019-11-27 05:14:18
问题 I have Windows 7, 64-bit. I'm trying to register a .dll (comdlg32.dll) using regsvr32. But I get an error that says the dll is read but the DLLRegistryServer entry point is not found. I have run the command under both System32 and SysWOW64 and I have run my commands with "Run As Administrator". My old MSComDlg.CommonDialog component is no longer working with 64-bit. 回答1: Run this command: dumpbin /exports comdlg32.dll You'll likely see that comdlg32.dll doesn't contain a DllRegisterServer

How can I use the common Save As dialog from VBScript?

帅比萌擦擦* 提交于 2019-11-26 16:34:35
问题 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 I can get an Open dialog, but there is no ShowSave method for this object (as there seems to be for a similar object in Visual Basic non-script). I searched StackOverflow and googled for "[vbscript] save dialog" (and with "Windows Script Host"), but I only found threads about accessing common