コード例 #1
0
        private void EventVisualizer_Load(object sender, EventArgs e)
        {
            transactionList    = new List <string>();
            allTransactionList = new List <string>();
            if (Utility.checkRegistryValue())
            {
                fillSettingsDetails();
                //textBoxSystem.Text = Utility.getSystemName();
                getEventLog();
            }
            else
            {
                this.Enabled = false;
                using (Forms.Settings childform = new Forms.Settings())
                {
                    childform.ShowDialog(this);
                }
            }

            //EventQueryExample ex = new EventQueryExample();
            ////ex.QueryActiveLog();
            ////ex.QueryExternalFile();
            //ex.QueryRemoteComputer();
        }
コード例 #2
0
 private void buttonApplySettingsFilter_Click(object sender, EventArgs e)
 {
     Forms.Settings childform = new Forms.Settings();
     childform.Show();
 }