Exemplo n.º 1
0
 public UserHomepage()
 {
     InitializeComponent();
     autoComplete();
     searchDel = showAll;
     searchDel.Invoke();
 }
Exemplo n.º 2
0
 //populates all the names and location of restaurants in listBox1
 private void button6_Click(object sender, EventArgs e)
 {
     searchDel = showAll;
     searchDel.Invoke();
 }
Exemplo n.º 3
0
 //populates the names of restaurants in listBox1 by location
 private void button3_Click(object sender, EventArgs e)
 {
     searchDel = showAllByLocation;
     searchDel.Invoke();
 }