iSpyApplication.MainForm.menuItem29_Click C# (CSharp) Method

menuItem29_Click() private method

private menuItem29_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void menuItem29_Click(object sender, EventArgs e)
        {
            if (String.IsNullOrWhiteSpace(Conf.Archive))
            {
                MessageBox.Show(this, LocRm.GetString("SpecifyArchiveLocation"));
                ShowSettings(2);
            }
            if (!String.IsNullOrWhiteSpace(Conf.Archive))
            {
                Process.Start(Conf.Archive);
            }
        }
MainForm