ArcGISCompare.frmMaster.mnuAnalyzeInstructions_Click C# (CSharp) Method

mnuAnalyzeInstructions_Click() private method

private mnuAnalyzeInstructions_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void mnuAnalyzeInstructions_Click(object sender, EventArgs e)
        {
            if (theInst != null && theInst.isConnected)
            {
                if (theInst.isMapped)
                {
                }
                else
                {
                    theInst.BuildMappingTables();

                    DialogResult theAns = MessageBox.Show(this, "No Mapping Exists..  Attempt Archive Load?", "Empty Instructions Database", MessageBoxButtons.OK);

                    if (theAns == DialogResult.OK)
                    {
                    }
                }
            }
        }