私は MDI フォームを持っています。プログラムを起動すると、開いている子ウィンドウは常に後ろに移動します。MDI フォームで sendtoback() を試し、子フォームで Bringtofront() を試しましたが、うまくいきませんでした。誰?
private void MDI_Form_Load(object sender, EventArgs e)
{
SendToBack();
Form1 loginscrn = new Form1();
loginscrn.Show();
}
private void Form1_Load(object sender, EventArgs e)
{
BringToFront();
SqlConnection connection = new SqlConnection(@"server=.\SQLEXPRESS; database=loginsTest;Trusted_Connection=yes");
connection.Open();
string selection = "select * from Logins where Name = '"+userNameBox.Text+"'";
SqlCommand command = new SqlCommand(selection, connection);
SqlDataAdapter da = new SqlDataAdapter(command);
DataSet ds = new DataSet();
da.Fill(ds);
DataTable dt = ds.Tables[0];
}