-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpotHoldee.cs
97 lines (90 loc) · 3.08 KB
/
SpotHoldee.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Hold_It_App
{
public partial class SpotHoldee : Form
{
public SpotHoldee(account_head Account_Database, Event_Controller Event_Database, account_info account, Spot view)
{
ActDB = Account_Database;
EvtDB = Event_Database;
user = account;
current = view;
InitializeComponent();
}
private account_head ActDB;
private Event_Controller EvtDB;
private account_info user;
private Spot current;
private void HomeButton_Click(object sender, EventArgs e)
{
HomeHoldee NewForm = new HomeHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void SearchButton_Click(object sender, EventArgs e)
{
SearchHoldee NewForm = new SearchHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void PostButton_Click(object sender, EventArgs e)
{
PostHoldee NewForm = new PostHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
this.Hide();
}
private void AccountButton_Click(object sender, EventArgs e)
{
AccountHoldee NewForm = new AccountHoldee(ActDB, EvtDB, user);
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
NewForm.label2.Text = user.get_email();
if (EvtDB.check_spot(user.get_email()) == false)
NewForm.label8.Show();
else
NewForm.button3.Show();
this.Hide();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
if(current.get_taken() == true)
this.label6.Text = current.get_customerid();
this.label7.Text = current.get_cost().ToString();
this.textBox3.Text = current.get_spotdesc();
}
private void Cancel_Button_Click(object sender, EventArgs e)
{
AccountHoldee NewForm = new AccountHoldee(ActDB, EvtDB, user);
EvtDB.delete_spot(user.get_email());
NewForm.Show();
NewForm.Left = this.Left;
NewForm.Top = this.Top;
NewForm.Size = this.Size;
NewForm.label2.Text = user.get_email();
this.Hide();
if (EvtDB.check_spot(user.get_email()) == false)
NewForm.label8.Show();
else
NewForm.button3.Show();
}
}
}