-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAddProperty.cs
More file actions
276 lines (213 loc) · 8.85 KB
/
AddProperty.cs
File metadata and controls
276 lines (213 loc) · 8.85 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Data.Sql;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
//using System.G
namespace RealEstateDB
{
public partial class AddProperty : Form
{
public AddProperty()
{
InitializeComponent();
}
private void label1_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
HomePage Home_page = new HomePage();
Home_page.Show();
}
private void label7_Click(object sender, EventArgs e)
{
}
private void AddProperty_Load(object sender, EventArgs e)
{
}
private void buttonAddProperty_Click(object sender, EventArgs e)
{
//The following function is to add new property to the databases
if (ownerssnbox.TextLength< 9 )
{
MessageBox.Show(" You Enterd Less than 9 digits, Please Enter 9 Digits SSN! ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
if (zipbox.TextLength < 5)
{
MessageBox.Show(" You Enterd Less than 5 digits, Please Enter 5 Digits ZipCode ! ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
if (DateBuiltbox.TextLength < 4)
{
MessageBox.Show(" You Enterd Less than 4 digits, Please Enter 4 digits Date! ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else
{
addproperty(Pnobox.Text, comboboxtype.SelectedItem.ToString(), combostatus.SelectedItem.ToString(), addressbox.Text,
citybox.Text, combostates.Text, zipbox.Text, countybox.Text, float.Parse(areabox.Text), float.Parse(pricebox.Text), float.Parse(taxbox.Text), DateBuiltbox.Text, ownerssnbox.Text);
}
}
public void addproperty(string Pno, string type, string status, string Address, string city, string state, string zip, string county,
float Area, float price, float tax, string Date, string ownerssn)
{
{
SqlCommand addproperty = SqlConnectionCommand.getCommand();
addproperty.CommandText = "USE SRDB INSERT INTO PROPERTY Values" +
"(@strPNO, @strtype, @strDate, @floatprice, @strstatus, @floatTax, @strAddress, @strcity, @strstate, @strzip," +
"@strcounty, @floatArea, @strownerssn)";
//addproperty.Parameters.AddWithValue("@strproperty", comboboxtype.SelectedText);
addproperty.Parameters.AddWithValue("@strPno", Pno);
addproperty.Parameters.AddWithValue("@strtype", type);
addproperty.Parameters.AddWithValue("@strstatus", status);
addproperty.Parameters.AddWithValue("@strAddress", Address);
addproperty.Parameters.AddWithValue("@strCity", city);
addproperty.Parameters.AddWithValue("@strstate", state);
addproperty.Parameters.AddWithValue("@strzip", zip);
addproperty.Parameters.AddWithValue("@strcounty", county);
addproperty.Parameters.AddWithValue("@floatarea",Area);
addproperty.Parameters.AddWithValue("@floatprice", price);
addproperty.Parameters.AddWithValue("@floatTax", tax);
addproperty.Parameters.AddWithValue("@strDate", Date);
addproperty.Parameters.AddWithValue("@strownerssn", ownerssn);
// MessageBox.Show(addproperty.CommandText.ToString());
try
{
addproperty.ExecuteNonQuery();
MessageBox.Show("Successfully added" + " " + Pno + " " + type ,
"Added property", MessageBoxButtons.OK, MessageBoxIcon.Information);
this.Hide();
ViewProps view_props = new ViewProps();
view_props.Show();
}
catch (Exception ex)
{
MessageBox.Show(" Please Make sure that you Entered a Valid Seller SSN Number in the OwnerSSN Box ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
// MessageBox.Show("Faild to Add a property: " + ex.Message, "Add Property Failure", MessageBoxButtons.OK, MessageBoxIcon.Error);
}//end
}
}
private void textBox6_TextChanged(object sender, EventArgs e)
{
try
{
float.Parse(areabox.Text);
}
catch
{
MessageBox.Show("Please Enter a number ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void combostatus_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void comboboxtype_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
/* Random slumpGenerator = new Random(); int tal;
tal = slumpGenerator.Next(1000000000);
Pnobox.Text = tal.ToString();*/
System.Guid guid = System.Guid.NewGuid();
String id = guid.ToString();
}
private void statebox_TextChanged(object sender, EventArgs e)
{
//if (combostates.TextLength>2)
// {
// MessageBox.Show("Please Use the State Abbreviation ","Incorrect text",MessageBoxButtons.OK,MessageBoxIcon.Error);
// }
}
private void pricebox_TextChanged(object sender, EventArgs e)
{
try
{
float.Parse(pricebox.Text);
}
catch
{
MessageBox.Show("Please Enter a dollar amount ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void zipbox_TextChanged(object sender, EventArgs e)
{
try
{
float.Parse(zipbox.Text);
if (zipbox.Text.Length > 5 && zipbox.Text != null)
{
zipbox.Text = null;
}
}
catch
{
MessageBox.Show("Please Enter 5 zip code digits ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void taxbox_TextChanged(object sender, EventArgs e)
{
try
{
float.Parse(taxbox.Text);
}
catch
{
MessageBox.Show("Please Enter a dollar amount ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void DateBuiltbox_TextChanged(object sender, EventArgs e)
{
try
{
float.Parse(DateBuiltbox.Text);
if (DateBuiltbox.Text.Length>4 && DateBuiltbox.Text !=null)
{
DateBuiltbox.Text = null;
}
}
catch
{
MessageBox.Show("Please Enter 4 digit year built ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void ownerssnbox_TextChanged(object sender, EventArgs e)
{
try
{
float.Parse(ownerssnbox.Text);
if (ownerssnbox.Text.Length > 9 && ownerssnbox.Text != null)
{
ownerssnbox.Text = null;
}
}
catch
{
MessageBox.Show(" Please Enter 9 digit SSN ", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private void label12_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
this.Hide();
ViewProps view_props = new ViewProps();
view_props.Show();
}
/*
public class Employee
{
public Guid Id { get; private set; } = Guid.NewGuid();
public string EmployeeName { get; set; }
public string Address { get; set; }
}
*/
}
}