Exemple #1
0
        private void btnCreateBrowse_Click(object sender, EventArgs e)
        {
            RegExFileRetriever dlg = new RegExFileRetriever();

            if (dlg.ShowDialog() == DialogResult.OK)
            {
                this._selectedFileNames = dlg.FileNames;
                this.cbxSource.Text     = "<regex selection>";
            }
        }
Exemple #2
0
 private void btnCreateBrowse_Click(object sender, EventArgs e)
 {
     RegExFileRetriever dlg = new RegExFileRetriever();
     if (dlg.ShowDialog() == DialogResult.OK)
     {
         this._selectedFileNames = dlg.FileNames;
         this.cbxSource.Text = "<regex selection>";
     }
 }