Exemple #1
0
        private void startBtn_Click(object sender, EventArgs e)
        {
            AnalyseProgress progressForm = new AnalyseProgress();

            progressForm.Show(this);
            progressForm.startAnalysing(idaFile.Text, peDir.Text, outputFile.Text);
        }
Exemple #2
0
        private void startBtn_Click(object sender, EventArgs e)
        {
            List <String> files = new List <String>();

            addDirectory(files, peDir.Text);

            AnalyseProgress progressForm = new AnalyseProgress();

            progressForm.Show(this);
            progressForm.startAnalysing(idaFile.Text, files, peDir.Text, outputFile.Text);
        }