Beispiel #1
0
        private void btnHex_Click(object sender, EventArgs e)
        {
            sFile  file     = accion.Selected_File();
            string filePath = accion.Save_File(file);
            Form   hex;

            if (!isMono)
            {
                hex             = new VisorHex(filePath, file.id, file.name != "rom.nds");
                hex.FormClosed += hex_FormClosed;
            }
            else
            {
                hex = new VisorHexBasic(filePath, 0, file.size);
            }

            hex.Text += " - " + file.name;
            hex.Show();
        }
Beispiel #2
0
        private void btnHex_Click(object sender, EventArgs e)
        {
            sFile file = accion.Selected_File();
            string filePath = accion.Save_File(file);
            Form hex;

            if (!isMono) {
                hex = new VisorHex(filePath, file.id, file.name != "rom.nds");
                hex.FormClosed += hex_FormClosed;
            } else {
                hex = new VisorHexBasic(filePath, 0, file.size);
            }

            hex.Text += " - " + file.name;
            hex.Show();
        }