Esempio n. 1
0
        private void Feedback()
        {
            DialogResult diag = MessageBox.Show("Do you have Outlook Configured on this PC?", "One Click Functions", MessageBoxButtons.YesNo);

            if (diag == DialogResult.Yes)
            {
                Form FB = new frmFB();
                FB.Text = "Feedback";
                FB.Show();
            }
            else
            {
                MessageBox.Show("Please send an email to [email protected]");
            }
        }
Esempio n. 2
0
        private void Frnd()
        {
            DialogResult diag = MessageBox.Show("Do you have Outlook Configured on this PC?", "One Click Functions", MessageBoxButtons.YesNo);

            if (diag == DialogResult.Yes)
            {
                Form FB = new frmFB();
                FB.Text = "Tell A Friend";
                FB.Show();
            }
            else
            {
                MessageBox.Show("Please refer your friends to go to https://github.com/clatonhendricks/XL_OneClickFunctions");
            }
        }