Ejemplo n.º 1
0
        /// <summary>
        /// Process opening code. Generates a list of modules too.
        /// </summary>
        public void OpenTheProc()
        {
            ProcTypeBox.Invoke((MethodInvoker) delegate
            {
                if (String.Compare(ProcTypeBox.Text, "Name") == 0) // if combobox set to Name, use string
                {
                    ProcOpen = m.OpenProcess(ProcTextBox.Text);
                }
                else // if combobox set to ID, use integer
                {
                    ProcOpen = m.OpenProcess(Convert.ToInt32(ProcTextBox.Text));
                }
            });

            if (ProcOpen) // if process opens successfully
            {
                OpenProcessBtn.Invoke((MethodInvoker) delegate
                {
                    OpenProcessBtn.Text      = "Close Process";
                    OpenProcessBtn.ForeColor = Color.Red;
                });

                ModuleList.Invoke((MethodInvoker) delegate
                {
                    if (ModuleList.Items.Count <= 0)
                    {
                        GetModuleList();
                    }
                });
            }
            else // on process open fail, show error message
            {
                //MessageBox.Show("ERROR: Process open failed!");
                ProcStatus.Invoke((MethodInvoker) delegate
                {
                    ProcStatus.Text      = "Closed";
                    ProcStatus.ForeColor = Color.Red;
                });
                ModuleList.Invoke((MethodInvoker) delegate
                {
                    if (ModuleList.Items.Count > 0)
                    {
                        ModuleList.Items.Clear();
                    }
                });
                StopWorker = true;
            }
        }
Ejemplo n.º 2
0
        public void GetModuleList()
        {
            ModuleList.Invoke((MethodInvoker) delegate
            {
                ModuleList.Items.Clear();
                foreach (KeyValuePair <string, IntPtr> kvp in m.modules) // iterate through process module list
                {
                    string[] arr = new string[4];
                    ListViewItem itm;
                    arr[0] = "0x" + kvp.Value.ToString("x8");
                    arr[1] = kvp.Key;
                    itm    = new ListViewItem(arr);
                    ModuleList.Items.Add(itm);
                }
            });

            ProcStatus.Invoke((MethodInvoker) delegate
            {
                ProcStatus.Text      = "Open";
                ProcStatus.ForeColor = Color.Green;
            });
        }