private void Anotherbutton_Click(object sender, EventArgs e) { register_current(); TB_title.Text = ""; LB_coauthor.Items.Clear(); if (TB_author.Text != mainauthor) { TB_author.Text = ""; TB_author.Focus(); } else { TB_title.Focus(); } }
private void Coauthorbutton_Click(object sender, EventArgs e) { LB_coauthor.Items.Add(TB_author.Text); TB_author.Text = ""; TB_author.Focus(); }