private void buttonGac_Click(object sender, EventArgs e)
        {
            Type t = FormTypeSelection.SelectType(this);

            if (t != null)
            {
                listBox1.Items.Add(t);
            }
        }
示例#2
0
        private void btADO_Click(object sender, EventArgs e)
        {
            Type t = FormTypeSelection.SelectType(this, "MySql.Data", "MySql.Data.MySqlClient.MySqlConnection");

            if (t != null)
            {
                ConnectionType = t;
                lblADO.Text    = t.FullName;
            }
        }