Hi. I have moved to Setup Factory from another installer. In the past I could set up a Registry edit to turn off the VBA warnings in MS Access. I don't seem to have something right now as it won't write to the registry with the code I'm using. If I delete the registry line for MS Access Security and run the installer it does not create or set it.
Any suggestions? This was pasted from the Pre-Intall Actions. It is line 01, and 02
Registry.CreateKey(HKEY_CURRENT_USER, "Software\Microsoft\Office\12\Access\Security" );
Registry.SetValue(HKEY_CURRENT_USER, "Software\Microsoft\Office\12\Access\Security" , "VBAWarnings", "1", REG_DWORD);
Any suggestions? This was pasted from the Pre-Intall Actions. It is line 01, and 02
Registry.CreateKey(HKEY_CURRENT_USER, "Software\Microsoft\Office\12\Access\Security" );
Registry.SetValue(HKEY_CURRENT_USER, "Software\Microsoft\Office\12\Access\Security" , "VBAWarnings", "1", REG_DWORD);
Comment