数据库是SQL
将From1中查询的结果显示到From2中,
那位高手知道,能不能尽快告诉我,我有急用.
在此,先谢过各位了!
不知道这是不是你要的效果。
private void button1_Click(object sender, System.EventArgs e)
{
try
{
SqlConnection conn = new SqlConnection("server=.;uid=sa;pwd=;database=DEPOT");
//SqlCommand command = new SqlCommand("select * from 用户清单",conn);
SqlDataAdapter da = new SqlDataAdapter("select 用户名称 from 用户清单",conn);
conn.Open();
DataSet ds = new DataSet();
da.Fill(ds,"用户清单");
DataTable mytable = ds.Tables[0];
DataRow myrow;
for(int i =0 ;i<mytable.Rows.Count;i++)
{
myrow = mytable.Rows[i];
textBox1.Text += myrow[0].ToString()+"\r\n";
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}this.Close();
}这是form1中的button事件代码,其中的textBox1的属性Modifier要改为public(默认情况下为private)
[STAThread]
static void Main()
{
Application.Run(new Form2());
}
private void Form3_Load(object sender, System.EventArgs e)
{
Form1 frm = new Form1();
frm.ShowDialog();
textBox1.Text = frm.textBox1.Text;
}这是form2中的代码。