/// <summary>
        /// Set Internet Explorer Proxt setting
        /// </summary>
        /// <param name="ieProfile"></param>
        private void applyIEProfile( IEProfile ieProfile )
        {
            UpdateStatus( "Setting Internet Explorer Proxy Setting..." );

            IEProxy.ProxyEnabled = ieProfile.UseProxy;
            IEProxy.ProxyServer = ieProfile.ProxyName;
            IEProxy.BypassProxyForLocal = ieProfile.BypassLocal;

            UpdateStatus( "Done." );
        }
Esempio n. 2
0
        /// <summary>
        /// Set Internet Explorer Proxt setting
        /// </summary>
        /// <param name="ieProfile"></param>
        private void applyIEProfile(IEProfile ieProfile)
        {
            UpdateStatus("Setting Internet Explorer Proxy Setting...");

            IEProxy.ProxyEnabled        = ieProfile.UseProxy;
            IEProxy.ProxyServer         = ieProfile.ProxyName;
            IEProxy.BypassProxyForLocal = ieProfile.BypassLocal;

            UpdateStatus("Done.");
        }
Esempio n. 3
0
        /// <summary>
        /// Loads IE Proxy settings
        /// </summary>
        private void loadIEProxy( )
        {
            IEProfile profile = _CurrentProfile.IEProfile;

            chkUseProxy.Checked       = profile.UseProxy;
            chkByPassForLocal.Checked = profile.BypassLocal;
            //txtLocal.Text = profile.BypassAddresses;
            txtProxy.Text = profile.ProxyName;

            grpIEProxy.Enabled = true;
        }