コード例 #1
0
 private void GetQuizTopicNameWindow_Load(object sender, EventArgs e)
 {
     foreach (String tables in GlobalStaticVariablesAndMethods.GetTableNames())
     {
         comboBoxSubjects.Items.Add(tables);
     }
 }
コード例 #2
0
 private void TopicSelectorDialog_Load(object sender, EventArgs e)
 {
     foreach (String subject in GlobalStaticVariablesAndMethods.GetTableNames())
     {
         comboBoxSubjects.Items.Add(subject);
     }
 }
コード例 #3
0
 private void buttonShowAvailSub_Click(object sender, EventArgs e)
 {
     listBox1.Items.Clear();
     foreach (String tables in GlobalStaticVariablesAndMethods.GetTableNames())
     {
         listBox1.Items.Add(tables);
     }
 }