问一下,要在子窗口中调用主窗口中的TextBox中的输入的代码怎么写
我现在是这个代码,但是有错,帮忙看看什么错啊
public partial class Form3 : Form
{
public Form3(string str)
{
InitializeComponent();
this.id.Text = str;
SqlConnection Conn = new SqlConnection("Server=localhost;DataBase=学生成绩;Integrated Security =SSPI"); //建立数据库实例..
Conn.Open(); //打开数据库
SqlCommand Cmd = new SqlCommand();
Cmd.Connection = Conn;
Cmd.CommandType = CommandType.Text;
Cmd.CommandText = "select 姓名,语文,数学,英语 from 学生成绩 where 学号=str";
Cmd.ExecuteNonQuery(); //执行sql语句...
Conn.Close();