예제 #1
0
파일: Quotation.cs 프로젝트: rio95UP/NewEra
        private void btn_add_Click(object sender, EventArgs e)
        {
            String     name = cmb_in.SelectedItem.ToString();
            Quotations sas  = new Quotations();
            DataTable  dt   = sas.addQuot(name);

            dataGridView1.DataSource = dt;
        }