Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am looking in
HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\E xcel\Options at the OPENx subkeys. OPEN = '/F "C:\Program Files\Microsoft Office\Office10\Library\Solver\Solver.xla"' OPEN3 = '/R "C:\Program Files\Microsoft Office\Office10\Library\Analysis\ANALYS32.XLL"' What do the /F and /R commands do? The rest of the add-ins that i have loaded contain neither. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() The /F switch means it's a demand-loaded add-in. The menu for it is created by another registry key and the add-in file is not actually opened until you select its menu. The /R switch opens the add-in read-only. -- Rob Bovey, MCSE, MCSD, Excel MVP Application Professionals http://www.appspro.com/ * Please post all replies to this newsgroup * * I delete all unsolicited e-mail responses * "R Avery" wrote in message ... I am looking in HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\E xcel\Options at the OPENx subkeys. OPEN = '/F "C:\Program Files\Microsoft Office\Office10\Library\Solver\Solver.xla"' OPEN3 = '/R "C:\Program Files\Microsoft Office\Office10\Library\Analysis\ANALYS32.XLL"' What do the /F and /R commands do? The rest of the add-ins that i have loaded contain neither. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Where in the object model can I access these properties, or do I have to
insert the /F or /R switch manually using registry API calls? Are there any other switches available? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
"R Avery" wrote in message
... Where in the object model can I access these properties, or do I have to insert the /F or /R switch manually using registry API calls? Are there any other switches available? You have to insert these manually using Registry API calls when you install you add-in. For the /F switch you also have to use the Regisry API to build your menu and you need to add a special defined name to your add-in so that Excel recognizes it as demand-loaded. These are the only switched that I'm aware of. All of this is described in the Excel 97 SDK, although it's pretty difficult to locate. The text for the Excel 97 SDK can be found in the MSDN library: http://msdn.microsoft.com/library/ under: Office Solutions Development Microsoft Office Microsoft Office 97 Product Documentation Excel Microsoft Excel 97 Developer's Kit -- Rob Bovey, MCSE, MCSD, Excel MVP Application Professionals http://www.appspro.com/ * Please post all replies to this newsgroup * * I delete all unsolicited e-mail responses * |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How Can I Unblock Registry Settings to allow .wk1 Files | Excel Worksheet Functions | |||
'blocked by registry policy settings' | Excel Discussion (Misc queries) | |||
Excel VBA- Error Accessing the system registry | Excel Programming | |||
excel macro code in registry | Excel Programming |