Exemple #1
0
 private void runQueryButton_Click(object sender, EventArgs e)
 {
     if (queryEditor.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         Logo[] logos = GetLogos(queryEditor.DataTable);
         LoadFiles(logos);
     }
 }
Exemple #2
0
 private void runQueryButton_Click(object sender, EventArgs e)
 {
     if (queryEditor.ShowDialog() == System.Windows.Forms.DialogResult.OK)
     {
         string[] fileNames = GetFileNames(queryEditor.DataTable);
         LoadFiles(fileNames);
     }
 }