Ejemplo n.º 1
0
        void process()
        {
            main = new MainDat(path, prefix);
            string s = main.entry.ToString("X");

            main.dump(Path.GetDirectoryName(Application.ExecutablePath));
            textBox3.Text = s;
            progs         = new ProgDat(path, prefix, main);
            progs.dump(Path.GetDirectoryName(Application.ExecutablePath));
            comboBox1.Items.Clear();
            for (int i = 0; i < progs.progs.Count; i++)
            {
                comboBox1.Items.Add(i);
            }
        }
Ejemplo n.º 2
0
 void process()
 {
     main = new MainDat(path,prefix);
     string s=main.entry.ToString("X");
     main.dump(Path.GetDirectoryName(Application.ExecutablePath));
     textBox3.Text = s;
     progs = new ProgDat(path, prefix, main);
     progs.dump(Path.GetDirectoryName(Application.ExecutablePath));
     comboBox1.Items.Clear();
     for (int i = 0; i < progs.progs.Count; i++)
         comboBox1.Items.Add(i);
 }