Example #1
0
 private void btnVenue_Click(object sender, EventArgs e)
 {
     _timer.Enabled = false;
     GPS.Stop();
     frmVenueList oForm = new frmVenueList(lblLat.Text, lblLon.Text, "Your Location");
     oForm.Show();
     this.Hide();
 }
 private void miNearbyVenues_Click(object sender, EventArgs e)
 {
     frmVenueList oForm = new frmVenueList(_strLat, _strLon, _strVenueName);
     oForm.Show();
     this.Hide();
 }