This bug is related to some changes Microsoft made to a build of .NET 1.1 SP1 for Windows 2003 Server. The dialog works properly if the the .NET 2.0 framework is loaded for IDE integration.
Here's the workaround:
1. If it's not already there, install .NET 2.0 on the Windows Server 2003 machine.
2. make a copy of the VaultGUIClient.exe.config (in the Vault GUI Client directory) and rename it "VB6.exe.config."
Copy the VB6.exe.config into the same directory as VB6.exe and enter runtime information so that the first part of the file looks like this:
Code: Select all
<?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
<requiredRuntime version="v2.0.50727" safemode="true"/>
</startup>
</configuration>