|
■No45394 (επιστημη さん) に返信 > コードみせて。
επιστημη さん返信ありがとうございます。 コードは **********main Form***************** public partial class Form4 : Form { public Form4() { InitializeComponent(); }
public string ID; string pass;
public void button1_Click(object sender, EventArgs e) { if (textBox1.Text.Length != 0 && textBox2.Text.Length != 0) { ID =textBox1.Text; pass =textBox2.Text;
StreamReader sr = new StreamReader("**");
string dat; int check = 0;
while ((dat = sr.ReadLine()) != null) { string[] sbuf = dat.Split(','); if (ID == sbuf[0] && pass == sbuf[1]) { check = 1; MessageBox.Show("ログイン成功!!"); Form5 newForm = new Form5(); newForm.ShowDialog(); //this.Close(); }
} sr.Close(); if (check != 1) { MessageBox.Show("ログイン失敗!!"); } } else { MessageBox.Show("IDまたは、passが入力されていません。"); } } ***********************sub Form********************************** public partial class Form6 : Form { public Form6() { InitializeComponent(); }
//private Form4 otherForm; Form4 otherForm = new Form4();
string id;
private void Form6_Load(object sender, EventArgs e) { id = otherForm.ID; label2.Text="あなたは"+id+"でログインしています。"; } } ***************************************************************** となっています。
|