//displays featured page private void button5_Click(object sender, EventArgs e) { Form5 f = new Form5(); this.Hide(); f.Show(); }
private void btnFeature_Click(object sender, EventArgs e) { Form5 f = new Form5(); this.Hide(); f.Show(); }
//display featured tab private void button2_Click(object sender, EventArgs e) { Form5 f = new Form5(); list.searchString = textBox1.Text; this.Hide(); f.Show(); }