public MainForm() { InitializeComponent(); config = ConfigManager.GetContext("MainForm"); captureMgr = new Capture.Manager(); colorPool = new ColorPool(); //tblMessages = dataSet.Tables["messages"]; debugForm = new DebugForm(); swForm = new SoftwallForm(); packetParser = new PacketParser(debugForm); packetParser.PacketDescriptionReceived += new PacketParser.PacketDescriptionReceivedHandler(packetParser_PacketDescriptionReceived); dumpDisplayMode = DisplayMode.HEX; findTypeComboBox.SelectedIndex = 0; ClearState(); LoadSettings(); ApplyFilters(); }
public MainForm() { InitializeComponent(); config = ConfigManager.GetContext("MainForm"); captureMgr = new Capture.Manager(); tblMessages = dataSet.Tables["messages"]; welcomeForm = new WelcomeForm (); debugForm = new DebugForm(); injectForm = new InjectForm(); swForm = new SoftwallForm(); packetParser = new PacketParser(debugForm); packetParser.PacketDescriptionReceived += new PacketParser.PacketDescriptionReceivedHandler(packetParser_PacketDescriptionReceived); dumpDisplayMode = DisplayMode.HEX; findTypeComboBox.SelectedIndex = 0; ClearState(); LoadSettings(); ApplyFilters(); Thread versionCheckThread = new Thread (CheckForNewerVersion); versionCheckThread.Start (); }