Exemple #1
0
        /// <summary>
        /// Manage HTTPS Passwords
        /// </summary>
        private void MenuMainManageHttpsClick(object sender, EventArgs e)
        {
            FormHttps formHttps = new FormHttps();

            formHttps.ShowDialog();
        }
Exemple #2
0
        /// <summary>
        /// User clicked on the HTTPS authentication button, open a dialog to enter HTTPS credentials
        /// </summary>
        private void BtHttpsClicked(object sender, EventArgs e)
        {
            FormHttps formHttps = new FormHttps();

            formHttps.ShowDialog();
        }