‪Black Box
Public Member Functions | Static Public Attributes | Protected Member Functions | Private Member Functions | Private Attributes
BBTasker.BBAccessPad Class Reference
Inheritance diagram for BBTasker.BBAccessPad:

Public Member Functions

 BBAccessPad ()
 

Static Public Attributes

static bool access = false
 

Protected Member Functions

override void Dispose (bool disposing)
 ‪Clean up any resources being used. More...
 

Private Member Functions

void btn01_Click (object sender, System.EventArgs e)
 ‪Keypad 01 More...
 
void btn02_Click (object sender, System.EventArgs e)
 ‪Keypad 02 More...
 
void btn03_Click (object sender, System.EventArgs e)
 ‪Keypad 03 More...
 
void btn04_Click (object sender, System.EventArgs e)
 ‪Keypad 04 More...
 
void btn05_Click (object sender, System.EventArgs e)
 ‪Keypad 05 More...
 
void btn06_Click (object sender, System.EventArgs e)
 ‪Keypad 06 More...
 
void btn07_Click (object sender, System.EventArgs e)
 ‪Keypad 07 More...
 
void btn08_Click (object sender, System.EventArgs e)
 ‪Keypad 08 More...
 
void btn09_Click (object sender, System.EventArgs e)
 ‪Keypad 09 More...
 
void btn0_Click (object sender, System.EventArgs e)
 ‪Keypad 0 More...
 
void btnEnter_Click (object sender, System.EventArgs e)
 ‪Check access pin More...
 
void btnClear_Click (object sender, System.EventArgs e)
 ‪Clear access pin More...
 
void InitializeComponent ()
 ‪Required method for Designer support - do not modify the contents of this method with the code editor. More...
 

Private Attributes

string passwordPin = ""
 
string passwordCheck = "9958"
 
System.ComponentModel.IContainer components = null
 ‪Required designer variable. More...
 
System.Windows.Forms.Button btn01
 
System.Windows.Forms.TextBox pswBox
 
System.Windows.Forms.Button btn02
 
System.Windows.Forms.Button btn03
 
System.Windows.Forms.Button btn06
 
System.Windows.Forms.Button btn05
 
System.Windows.Forms.Button btn04
 
System.Windows.Forms.Button btn09
 
System.Windows.Forms.Button btn08
 
System.Windows.Forms.Button btn07
 
System.Windows.Forms.Button btn0
 
System.Windows.Forms.Button btnClear
 
System.Windows.Forms.Button btnEnter
 

Detailed Description

Definition at line 6 of file BBAccessPad.cs.

Constructor & Destructor Documentation

◆ BBAccessPad()

BBTasker.BBAccessPad.BBAccessPad ( )

Definition at line 12 of file BBAccessPad.cs.

13  {
15  }
‪void InitializeComponent()
‪Required method for Designer support - do not modify the contents of this method with the code editor...

Member Function Documentation

◆ btn01_Click()

void BBTasker.BBAccessPad.btn01_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 01

Parameters
sender
e

Definition at line 22 of file BBAccessPad.cs.

23  {
24  if (‪passwordPin.Length < 4)
25  {
26  ‪passwordPin += "1";
28  }
29  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn02_Click()

void BBTasker.BBAccessPad.btn02_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 02

Parameters
sender
e

Definition at line 36 of file BBAccessPad.cs.

37  {
38  if (‪passwordPin.Length < 4)
39  {
40  ‪passwordPin += "2";
42  }
43  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn03_Click()

void BBTasker.BBAccessPad.btn03_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 03

Parameters
sender
e

Definition at line 50 of file BBAccessPad.cs.

51  {
52  if (‪passwordPin.Length < 4)
53  {
54  ‪passwordPin += "3";
56  }
57  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn04_Click()

void BBTasker.BBAccessPad.btn04_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 04

Parameters
sender
e

Definition at line 64 of file BBAccessPad.cs.

65  {
66  if (‪passwordPin.Length < 4)
67  {
68  ‪passwordPin += "4";
70  }
71  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn05_Click()

void BBTasker.BBAccessPad.btn05_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 05

Parameters
sender
e

Definition at line 78 of file BBAccessPad.cs.

79  {
80  if (‪passwordPin.Length < 4)
81  {
82  ‪passwordPin += "5";
84  }
85  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn06_Click()

void BBTasker.BBAccessPad.btn06_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 06

Parameters
sender
e

Definition at line 92 of file BBAccessPad.cs.

93  {
94  if (‪passwordPin.Length < 4)
95  {
96  ‪passwordPin += "6";
98  }
99  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn07_Click()

void BBTasker.BBAccessPad.btn07_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 07

Parameters
sender
e

Definition at line 106 of file BBAccessPad.cs.

107  {
108  if (‪passwordPin.Length < 4)
109  {
110  ‪passwordPin += "7";
111  ‪pswBox.Text = ‪passwordPin;
112  }
113  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn08_Click()

void BBTasker.BBAccessPad.btn08_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 08

Parameters
sender
e

Definition at line 120 of file BBAccessPad.cs.

121  {
122  if (‪passwordPin.Length < 4)
123  {
124  ‪passwordPin += "8";
125  ‪pswBox.Text = ‪passwordPin;
126  }
127  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn09_Click()

void BBTasker.BBAccessPad.btn09_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 09

Parameters
sender
e

Definition at line 134 of file BBAccessPad.cs.

135  {
136  if (‪passwordPin.Length < 4)
137  {
138  ‪passwordPin += "9";
139  ‪pswBox.Text = ‪passwordPin;
140  }
141  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn0_Click()

void BBTasker.BBAccessPad.btn0_Click ( object  sender,
System.EventArgs  e 
)
private

‪Keypad 0

Parameters
sender
e

Definition at line 148 of file BBAccessPad.cs.

149  {
150  if (‪passwordPin.Length < 4)
151  {
152  ‪passwordPin += "0";
153  ‪pswBox.Text = ‪passwordPin;
154  }
155  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btnClear_Click()

void BBTasker.BBAccessPad.btnClear_Click ( object  sender,
System.EventArgs  e 
)
private

‪Clear access pin

Parameters
sender
e

Definition at line 184 of file BBAccessPad.cs.

185  {
186  if (‪passwordPin.Length > 0)
187  {
188  ‪passwordPin = ‪passwordPin.Remove(‪passwordPin.Length - 1);
189  ‪pswBox.Text = ‪passwordPin;
190  }
191  }
‪System.Windows.Forms.TextBox pswBox

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btnEnter_Click()

void BBTasker.BBAccessPad.btnEnter_Click ( object  sender,
System.EventArgs  e 
)
private

‪Check access pin

Parameters
sender
e

Definition at line 162 of file BBAccessPad.cs.

163  {
165  {
166  MessageBox.Show("Incorrect Password", "Access Password", MessageBoxButtons.OK, MessageBoxIcon.Error);
167  ‪access = false;
168  ‪BBSensorErrorLog.‪SaveErrorData("Access Pad Incorrect Password ");
169  }
171  {
172  MessageBox.Show("Password Accepted", "Access Password", MessageBoxButtons.OK, MessageBoxIcon.Information);
173  ‪access = true;
174  ‪BBSensorErrorLog.‪SaveErrorData("Access Pad correct Password ");
175  }
176  this.Close();
177  }
‪static bool access
Definition: BBAccessPad.cs:10
‪static void SaveErrorData(string error)
‪Log all the error that occurs in the program

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ Dispose()

override void BBTasker.BBAccessPad.Dispose ( bool  disposing)
protected

‪Clean up any resources being used.

Parameters
disposing‪true if managed resources should be disposed; otherwise, false.

Definition at line 14 of file BBAccessPad.Designer.cs.

15  {
16  if (disposing && (‪components != null))
17  {
18  ‪components.Dispose();
19  }
20  base.Dispose(disposing);
21  }
‪System.ComponentModel.IContainer components
‪Required designer variable.

◆ InitializeComponent()

void BBTasker.BBAccessPad.InitializeComponent ( )
private

‪Required method for Designer support - do not modify the contents of this method with the code editor.

Definition at line 29 of file BBAccessPad.Designer.cs.

30  {
31  this.‪pswBox = new System.Windows.Forms.TextBox();
32  this.‪btnClear = new System.Windows.Forms.Button();
33  this.‪btnEnter = new System.Windows.Forms.Button();
34  this.‪btn0 = new System.Windows.Forms.Button();
35  this.‪btn09 = new System.Windows.Forms.Button();
36  this.‪btn08 = new System.Windows.Forms.Button();
37  this.‪btn07 = new System.Windows.Forms.Button();
38  this.‪btn06 = new System.Windows.Forms.Button();
39  this.‪btn05 = new System.Windows.Forms.Button();
40  this.‪btn04 = new System.Windows.Forms.Button();
41  this.‪btn03 = new System.Windows.Forms.Button();
42  this.‪btn02 = new System.Windows.Forms.Button();
43  this.‪btn01 = new System.Windows.Forms.Button();
44  this.SuspendLayout();
45  //
46  // pswBox
47  //
48  this.‪pswBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 17F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
49  this.‪pswBox.Location = new System.Drawing.Point(44, 14);
50  this.‪pswBox.MaxLength = 4;
51  this.‪pswBox.Name = "pswBox";
52  this.‪pswBox.PasswordChar = '*';
53  this.‪pswBox.Size = new System.Drawing.Size(100, 33);
54  this.‪pswBox.TabIndex = 1;
55  this.‪pswBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
56  //
57  // btnClear
58  //
59  this.‪btnClear.BackgroundImage = global::BBTasker.Properties.Resources.delete_512;
60  this.‪btnClear.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
61  this.‪btnClear.Location = new System.Drawing.Point(127, 239);
62  this.‪btnClear.Name = "btnClear";
63  this.‪btnClear.Size = new System.Drawing.Size(51, 57);
64  this.‪btnClear.TabIndex = 11;
65  this.‪btnClear.UseVisualStyleBackColor = true;
66  this.‪btnClear.Click += new System.EventHandler(this.‪btnClear_Click);
67  //
68  // btnEnter
69  //
70  this.‪btnEnter.BackgroundImage = global::BBTasker.Properties.Resources.multimedia;
71  this.‪btnEnter.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
72  this.‪btnEnter.Location = new System.Drawing.Point(13, 239);
73  this.‪btnEnter.Name = "btnEnter";
74  this.‪btnEnter.Size = new System.Drawing.Size(51, 57);
75  this.‪btnEnter.TabIndex = 12;
76  this.‪btnEnter.UseVisualStyleBackColor = true;
77  this.‪btnEnter.Click += new System.EventHandler(this.‪btnEnter_Click);
78  //
79  // btn0
80  //
81  this.‪btn0.BackgroundImage = global::BBTasker.Properties.Resources._0;
82  this.‪btn0.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
83  this.‪btn0.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
84  this.‪btn0.Location = new System.Drawing.Point(70, 239);
85  this.‪btn0.Name = "btn0";
86  this.‪btn0.Size = new System.Drawing.Size(51, 57);
87  this.‪btn0.TabIndex = 10;
88  this.‪btn0.UseVisualStyleBackColor = true;
89  this.‪btn0.Click += new System.EventHandler(this.‪btn0_Click);
90  //
91  // btn09
92  //
93  this.‪btn09.BackgroundImage = global::BBTasker.Properties.Resources._9;
94  this.‪btn09.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
95  this.‪btn09.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
96  this.‪btn09.Location = new System.Drawing.Point(127, 176);
97  this.‪btn09.Name = "btn09";
98  this.‪btn09.Size = new System.Drawing.Size(51, 57);
99  this.‪btn09.TabIndex = 9;
100  this.‪btn09.UseVisualStyleBackColor = true;
101  this.‪btn09.Click += new System.EventHandler(this.‪btn09_Click);
102  //
103  // btn08
104  //
105  this.‪btn08.BackgroundImage = global::BBTasker.Properties.Resources._8;
106  this.‪btn08.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
107  this.‪btn08.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
108  this.‪btn08.Location = new System.Drawing.Point(70, 176);
109  this.‪btn08.Name = "btn08";
110  this.‪btn08.Size = new System.Drawing.Size(51, 57);
111  this.‪btn08.TabIndex = 8;
112  this.‪btn08.UseVisualStyleBackColor = true;
113  this.‪btn08.Click += new System.EventHandler(this.‪btn08_Click);
114  //
115  // btn07
116  //
117  this.‪btn07.BackgroundImage = global::BBTasker.Properties.Resources._7;
118  this.‪btn07.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
119  this.‪btn07.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
120  this.‪btn07.Location = new System.Drawing.Point(13, 176);
121  this.‪btn07.Name = "btn07";
122  this.‪btn07.Size = new System.Drawing.Size(51, 57);
123  this.‪btn07.TabIndex = 7;
124  this.‪btn07.UseVisualStyleBackColor = true;
125  this.‪btn07.Click += new System.EventHandler(this.‪btn07_Click);
126  //
127  // btn06
128  //
129  this.‪btn06.BackgroundImage = global::BBTasker.Properties.Resources._6;
130  this.‪btn06.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
131  this.‪btn06.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
132  this.‪btn06.Location = new System.Drawing.Point(127, 113);
133  this.‪btn06.Name = "btn06";
134  this.‪btn06.Size = new System.Drawing.Size(51, 57);
135  this.‪btn06.TabIndex = 6;
136  this.‪btn06.UseVisualStyleBackColor = true;
137  this.‪btn06.Click += new System.EventHandler(this.‪btn06_Click);
138  //
139  // btn05
140  //
141  this.‪btn05.BackgroundImage = global::BBTasker.Properties.Resources._5;
142  this.‪btn05.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
143  this.‪btn05.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
144  this.‪btn05.Location = new System.Drawing.Point(70, 113);
145  this.‪btn05.Name = "btn05";
146  this.‪btn05.Size = new System.Drawing.Size(51, 57);
147  this.‪btn05.TabIndex = 5;
148  this.‪btn05.UseVisualStyleBackColor = true;
149  this.‪btn05.Click += new System.EventHandler(this.‪btn05_Click);
150  //
151  // btn04
152  //
153  this.‪btn04.BackgroundImage = global::BBTasker.Properties.Resources._4;
154  this.‪btn04.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
155  this.‪btn04.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
156  this.‪btn04.Location = new System.Drawing.Point(13, 113);
157  this.‪btn04.Name = "btn04";
158  this.‪btn04.Size = new System.Drawing.Size(51, 57);
159  this.‪btn04.TabIndex = 4;
160  this.‪btn04.UseVisualStyleBackColor = true;
161  this.‪btn04.Click += new System.EventHandler(this.‪btn04_Click);
162  //
163  // btn03
164  //
165  this.‪btn03.BackgroundImage = global::BBTasker.Properties.Resources._3;
166  this.‪btn03.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
167  this.‪btn03.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
168  this.‪btn03.Location = new System.Drawing.Point(127, 50);
169  this.‪btn03.Name = "btn03";
170  this.‪btn03.Size = new System.Drawing.Size(51, 57);
171  this.‪btn03.TabIndex = 3;
172  this.‪btn03.UseVisualStyleBackColor = true;
173  this.‪btn03.Click += new System.EventHandler(this.‪btn03_Click);
174  //
175  // btn02
176  //
177  this.‪btn02.BackgroundImage = global::BBTasker.Properties.Resources._2;
178  this.‪btn02.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
179  this.‪btn02.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
180  this.‪btn02.Location = new System.Drawing.Point(70, 50);
181  this.‪btn02.Name = "btn02";
182  this.‪btn02.Size = new System.Drawing.Size(51, 57);
183  this.‪btn02.TabIndex = 2;
184  this.‪btn02.UseVisualStyleBackColor = true;
185  this.‪btn02.Click += new System.EventHandler(this.‪btn02_Click);
186  //
187  // btn01
188  //
189  this.‪btn01.BackgroundImage = global::BBTasker.Properties.Resources._1;
190  this.‪btn01.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
191  this.‪btn01.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
192  this.‪btn01.Location = new System.Drawing.Point(13, 50);
193  this.‪btn01.Name = "btn01";
194  this.‪btn01.Size = new System.Drawing.Size(51, 57);
195  this.‪btn01.TabIndex = 0;
196  this.‪btn01.UseVisualStyleBackColor = true;
197  this.‪btn01.Click += new System.EventHandler(this.‪btn01_Click);
198  //
199  // BBAccessPad
200  //
201  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
202  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
203  this.BackgroundImage = global::BBTasker.Properties.Resources.x_21_512;
204  this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
205  this.ClientSize = new System.Drawing.Size(190, 308);
206  this.Controls.Add(this.‪btnEnter);
207  this.Controls.Add(this.‪btnClear);
208  this.Controls.Add(this.‪btn0);
209  this.Controls.Add(this.‪btn09);
210  this.Controls.Add(this.‪btn08);
211  this.Controls.Add(this.‪btn07);
212  this.Controls.Add(this.‪btn06);
213  this.Controls.Add(this.‪btn05);
214  this.Controls.Add(this.‪btn04);
215  this.Controls.Add(this.‪btn03);
216  this.Controls.Add(this.‪btn02);
217  this.Controls.Add(this.‪pswBox);
218  this.Controls.Add(this.‪btn01);
219  this.DoubleBuffered = true;
220  this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
221  this.MaximizeBox = false;
222  this.MinimizeBox = false;
223  this.Name = "BBAccessPad";
224  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
225  this.Text = "BBAccessPad";
226  this.ResumeLayout(false);
227  this.PerformLayout();
228 
229  }
‪void btn08_Click(object sender, System.EventArgs e)
‪Keypad 08
Definition: BBAccessPad.cs:120
‪void btn09_Click(object sender, System.EventArgs e)
‪Keypad 09
Definition: BBAccessPad.cs:134
‪System.Windows.Forms.Button btn07
‪System.Windows.Forms.Button btn03
‪void btn04_Click(object sender, System.EventArgs e)
‪Keypad 04
Definition: BBAccessPad.cs:64
‪System.Windows.Forms.Button btnClear
‪void btn01_Click(object sender, System.EventArgs e)
‪Keypad 01
Definition: BBAccessPad.cs:22
‪System.Windows.Forms.Button btn09
‪void btn02_Click(object sender, System.EventArgs e)
‪Keypad 02
Definition: BBAccessPad.cs:36
‪void btn05_Click(object sender, System.EventArgs e)
‪Keypad 05
Definition: BBAccessPad.cs:78
‪System.Windows.Forms.Button btn04
‪void btnClear_Click(object sender, System.EventArgs e)
‪Clear access pin
Definition: BBAccessPad.cs:184
‪System.Windows.Forms.Button btn06
‪System.Windows.Forms.Button btn02
‪System.Windows.Forms.Button btn08
‪System.Windows.Forms.Button btn0
‪void btnEnter_Click(object sender, System.EventArgs e)
‪Check access pin
Definition: BBAccessPad.cs:162
‪System.Windows.Forms.Button btn05
‪void btn0_Click(object sender, System.EventArgs e)
‪Keypad 0
Definition: BBAccessPad.cs:148
‪System.Windows.Forms.Button btnEnter
‪void btn07_Click(object sender, System.EventArgs e)
‪Keypad 07
Definition: BBAccessPad.cs:106
‪System.Windows.Forms.TextBox pswBox
‪System.Windows.Forms.Button btn01
‪void btn03_Click(object sender, System.EventArgs e)
‪Keypad 03
Definition: BBAccessPad.cs:50
‪void btn06_Click(object sender, System.EventArgs e)
‪Keypad 06
Definition: BBAccessPad.cs:92

Referenced by BBTasker.BBAccessPad.BBAccessPad().

Field Documentation

◆ access

bool BBTasker.BBAccessPad.access = false
static

◆ btn0

System.Windows.Forms.Button BBTasker.BBAccessPad.btn0
private

Definition at line 243 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn01

System.Windows.Forms.Button BBTasker.BBAccessPad.btn01
private

Definition at line 233 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn02

System.Windows.Forms.Button BBTasker.BBAccessPad.btn02
private

Definition at line 235 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn03

System.Windows.Forms.Button BBTasker.BBAccessPad.btn03
private

Definition at line 236 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn04

System.Windows.Forms.Button BBTasker.BBAccessPad.btn04
private

Definition at line 239 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn05

System.Windows.Forms.Button BBTasker.BBAccessPad.btn05
private

Definition at line 238 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn06

System.Windows.Forms.Button BBTasker.BBAccessPad.btn06
private

Definition at line 237 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn07

System.Windows.Forms.Button BBTasker.BBAccessPad.btn07
private

Definition at line 242 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn08

System.Windows.Forms.Button BBTasker.BBAccessPad.btn08
private

Definition at line 241 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btn09

System.Windows.Forms.Button BBTasker.BBAccessPad.btn09
private

Definition at line 240 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btnClear

System.Windows.Forms.Button BBTasker.BBAccessPad.btnClear
private

Definition at line 244 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ btnEnter

System.Windows.Forms.Button BBTasker.BBAccessPad.btnEnter
private

Definition at line 245 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.InitializeComponent().

◆ components

System.ComponentModel.IContainer BBTasker.BBAccessPad.components = null
private

‪Required designer variable.

Definition at line 8 of file BBAccessPad.Designer.cs.

Referenced by BBTasker.BBAccessPad.Dispose().

◆ passwordCheck

string BBTasker.BBAccessPad.passwordCheck = "9958"
private

Definition at line 9 of file BBAccessPad.cs.

Referenced by BBTasker.BBAccessPad.btnEnter_Click().

◆ passwordPin

string BBTasker.BBAccessPad.passwordPin = ""
private

◆ pswBox

System.Windows.Forms.TextBox BBTasker.BBAccessPad.pswBox
private

The documentation for this class was generated from the following files: