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(); }
private void buttonApplySettingsFilter_Click(object sender, EventArgs e) { Forms.Settings childform = new Forms.Settings(); childform.Show(); }