コード例 #1
0
ファイル: Form1.cs プロジェクト: insaneis/SaveDecoder
        private void button12_Click(object sender, EventArgs e)
        {
            string texta = "";

            try
            {
                string[] array = new pwDec().Func(GetPasswordBytes());
                foreach (string str in array)
                {
                    texta = texta + str + Environment.NewLine;
                }
            }
            catch
            {
            }
            richTextBox1.Text = "GrowID: " + GetGrowID() + "\nLast World: " + GetLastWorld() + "\n\nPasswords:\n" + texta;
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: insaneis/SaveDecoder
        private void button13_Click(object sender, EventArgs e)
        {
            string text = "";

            pathsave.Text = savePath();
            Thread.Sleep(100);
            try
            {
                string[] array = new pwDec().Func(GetPasswordBytes());
                foreach (string str in array)
                {
                    text = text + str + Environment.NewLine;
                }
            }
            catch
            {
            }
            richTextBox1.Text = "GrowID: " + GetGrowID() + "\nLast World: " + GetLastWorld() + "\n\nPassword:\n" + text;
        }
コード例 #3
0
ファイル: Form1.cs プロジェクト: insaneis/SaveDecoder
        private void button11_Click(object sender, EventArgs e)
        {
            OpenFileDialog run    = new OpenFileDialog();
            DialogResult   result = run.ShowDialog();

            if (result == DialogResult.OK)
            {
                string file = run.FileName;
                pathsave.Text = file;
                string texta = "";
                try
                {
                    string[] array = new pwDec().Func(GetPasswordBytes());
                    foreach (string str in array)
                    {
                        texta = texta + str + Environment.NewLine;
                    }
                }
                catch
                {
                }
                richTextBox1.Text = "GrowID: " + GetGrowID() + "\nLast World: " + GetLastWorld() + "\n\nPasswords:\n" + texta;
            }
        }