Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
16 views3 pages

Sync Data

The document is a partial class definition for a Windows Forms application named 'frmDataSynch'. It includes the initialization of UI components such as text boxes for 'Bill Month' and 'Division', as well as buttons for 'Checking' and 'Synchronization'. The class also contains methods for resource management and layout configuration of the form.

Uploaded by

Kunal Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
16 views3 pages

Sync Data

The document is a partial class definition for a Windows Forms application named 'frmDataSynch'. It includes the initialization of UI components such as text boxes for 'Bill Month' and 'Division', as well as buttons for 'Checking' and 'Synchronization'. The class also contains methods for resource management and layout configuration of the form.

Uploaded by

Kunal Singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

...eDataUpload\OnlineDataUpload\frmDataSynch.Designer.

cs 1
1 namespace OnlineDataUpload
2 {
3 partial class frmDataSynch
4 {
5 /// <summary>
6 /// Required designer variable.
7 /// </summary>
8 private System.ComponentModel.IContainer components = null;
9
10 /// <summary>
11 /// Clean up any resources being used.
12 /// </summary>
13 /// <param name="disposing">true if managed resources should be
disposed; otherwise, false.</param>
14 protected override void Dispose(bool disposing)
15 {
16 if (disposing && (components != null))
17 {
18 components.Dispose();
19 }
20 base.Dispose(disposing);
21 }
22
23 #region Windows Form Designer generated code
24
25 /// <summary>
26 /// Required method for Designer support - do not modify
27 /// the contents of this method with the code editor.
28 /// </summary>
29 private void InitializeComponent()
30 {
31 this.txtBillMonth = new System.Windows.Forms.TextBox();
32 this.label5 = new System.Windows.Forms.Label();
33 this.txtDivCode = new System.Windows.Forms.TextBox();
34 this.label1 = new System.Windows.Forms.Label();
35 this.cmdChecking = new System.Windows.Forms.Button();
36 this.cmdUpdate = new System.Windows.Forms.Button();
37 this.SuspendLayout();
38 //
39 // txtBillMonth
40 //
41 this.txtBillMonth.Font = new System.Drawing.Font("Microsoft
Sans Serif", 10F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
42 this.txtBillMonth.Location = new System.Drawing.Point(496,
49);
43 this.txtBillMonth.Name = "txtBillMonth";
44 this.txtBillMonth.Size = new System.Drawing.Size(91, 30);
45 this.txtBillMonth.TabIndex = 13;
...eDataUpload\OnlineDataUpload\frmDataSynch.Designer.cs 2
46 //
47 // label5
48 //
49 this.label5.AutoSize = true;
50 this.label5.Font = new System.Drawing.Font("Microsoft Sans
Serif", 10F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
51 this.label5.Location = new System.Drawing.Point(393, 55);
52 this.label5.Name = "label5";
53 this.label5.Size = new System.Drawing.Size(97, 25);
54 this.label5.TabIndex = 12;
55 this.label5.Text = "Bill Month";
56 //
57 // txtDivCode
58 //
59 this.txtDivCode.Font = new System.Drawing.Font("Microsoft Sans
Serif", 10F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
60 this.txtDivCode.Location = new System.Drawing.Point(274, 49);
61 this.txtDivCode.Name = "txtDivCode";
62 this.txtDivCode.Size = new System.Drawing.Size(76, 30);
63 this.txtDivCode.TabIndex = 11;
64 //
65 // label1
66 //
67 this.label1.AutoSize = true;
68 this.label1.Font = new System.Drawing.Font("Microsoft Sans
Serif", 10F, System.Drawing.FontStyle.Regular,
System.Drawing.GraphicsUnit.Point, ((byte)(0)));
69 this.label1.Location = new System.Drawing.Point(174, 55);
70 this.label1.Name = "label1";
71 this.label1.Size = new System.Drawing.Size(80, 25);
72 this.label1.TabIndex = 10;
73 this.label1.Text = "Division";
74 //
75 // cmdChecking
76 //
77 this.cmdChecking.Location = new System.Drawing.Point(233,
117);
78 this.cmdChecking.Name = "cmdChecking";
79 this.cmdChecking.Size = new System.Drawing.Size(148, 73);
80 this.cmdChecking.TabIndex = 14;
81 this.cmdChecking.Text = "Checking";
82 this.cmdChecking.UseVisualStyleBackColor = true;
83 this.cmdChecking.Click += new System.EventHandler
(this.cmdChecking_Click);
84 //
85 // cmdUpdate
86 //
...eDataUpload\OnlineDataUpload\frmDataSynch.Designer.cs 3
87 this.cmdUpdate.Location = new System.Drawing.Point(420, 117);
88 this.cmdUpdate.Name = "cmdUpdate";
89 this.cmdUpdate.Size = new System.Drawing.Size(148, 73);
90 this.cmdUpdate.TabIndex = 15;
91 this.cmdUpdate.Text = "Synchronization";
92 this.cmdUpdate.UseVisualStyleBackColor = true;
93 //
94 // frmDataSynch
95 //
96 this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
97 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98 this.ClientSize = new System.Drawing.Size(819, 581);
99 this.Controls.Add(this.cmdUpdate);
100 this.Controls.Add(this.cmdChecking);
101 this.Controls.Add(this.txtBillMonth);
102 this.Controls.Add(this.label5);
103 this.Controls.Add(this.txtDivCode);
104 this.Controls.Add(this.label1);
105 this.Name = "frmDataSynch";
106 this.Text = "Data Synchronization";
107 this.ResumeLayout(false);
108 this.PerformLayout();
109
110 }
111
112 #endregion
113
114 private System.Windows.Forms.TextBox txtBillMonth;
115 private System.Windows.Forms.Label label5;
116 private System.Windows.Forms.TextBox txtDivCode;
117 private System.Windows.Forms.Label label1;
118 private System.Windows.Forms.Button cmdChecking;
119 private System.Windows.Forms.Button cmdUpdate;
120 }
121 }

You might also like