Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated section on hiding specific parts of the Settings dialog

...

Hide specific parts of the Settings

It is also possible to hide specific sections of the Settings dialog

...

.  This can be done by modifying the XrevTransmit.exe.config file in the installation directory

...

(usually C:\Program Files\Xrev Transmit

...

).  The relevant parts of the config file are shown below (for brevity, we've omitted lines that aren't relevant for this purpose).

Code Block
languagexml
titleXrevTransmit.exe.config
linenumberstrue
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <configSections>
    ...
    <section name="Xrev.Transmit.Windows.Settings" type="Xrev.Transmit.Windows.Settings.Configuration.SettingsConfigurationSection, Xrev.Transmit.Windows" />
    ...
  </configSections>
  ...
  <Xrev.Transmit.Windows.Settings ShowIssueSettings="True"
                                  ShowTransmittalSettings="True"
                                  ShowPostProcessingCommandSettings="True"
                                  ShowIssueMethods="True"
                                  ShowIssueReasons="True"
                                  ShowFormatTypes="True"
                                  ShowPaperSizes="True"
                                  ShowProjectIssueSettings="True"
                                  ShowProjectPostProcessingCommandSettings="True"
                                  ShowProjectAconexSettings="True"
                                  ShowFormatSettings="True"
                                  ShowContactSettings="True" />
  <runtime>
    ...
  </runtime>
  ...
</configuration>

Specifically, line 5 declares the Xrev.Transmit.Windows.Settings configuration section and lines 9-20 specify which sections should be visible in the Settings dialog.  Change the corresponding setting to False to hide that section.