public Report1Sel(Report1 mom) { this.mom = mom; InitializeComponent(); DataTable data = db.FetchAllSql("SELECT id,title FROM supps"); foreach (DataRow rr in data.Rows) { this.comboBox1.Items.Add(rr[0] + ";" +rr[1]); } }
private void toolStripMenuItem1_Click(object sender, EventArgs e) { Report1 r1 = new Report1(this.global); r1.Show(); }