/// <summary>
        ///     Set default values on initialisation
        /// </summary>
        private void SetDefaults()
        {
            _siebelApp  = new SiebelRepository(_settings.ConnReposName);
            _connected  = false;
            _currentTab = 0;

            // Config Changes
            _configChangedUserNameFilter = "All";
            _configChangedFromDateFilter = new DateTime().ToString(CultureInfo.InvariantCulture);
        }
        public FormReposAnalyser()
        {
            InitializeComponent();
            settings = new Settings();
            panelHome.BringToFront();
            comboBoxVer.SelectedIndex     = 0;
            comboBoxConType.SelectedIndex = 0;

            siebelApp = new SiebelApp();

            toggleConnectControls(false);

            // Load defaults
            loadDefaults();

            siebelRep = new SiebelRepository("Siebel Repository");

            // Load the news page
            webBrowserNews.Navigate("http://www.mroshaw.co.uk/OllerenshawIT/files/RepAnalyser/News.htm");
            // webBrowserNews.Navigate(Application.StartupPath + @"\News.htm");
        }