Append last push

This commit is contained in:
Spudnut2000 2025-06-14 22:04:58 -05:00
parent 5e2175640d
commit b1609b1b1b
2 changed files with 137 additions and 26 deletions

View File

@ -35,12 +35,16 @@ partial class AddUpdateCustomerForm
saveButton = new System.Windows.Forms.Button(); saveButton = new System.Windows.Forms.Button();
cancelButton = new System.Windows.Forms.Button(); cancelButton = new System.Windows.Forms.Button();
label2 = new System.Windows.Forms.Label(); label2 = new System.Windows.Forms.Label();
textBox1 = new System.Windows.Forms.TextBox(); nameTextBox = new System.Windows.Forms.TextBox();
textBox2 = new System.Windows.Forms.TextBox(); phoneTextBox = new System.Windows.Forms.TextBox();
label3 = new System.Windows.Forms.Label(); label3 = new System.Windows.Forms.Label();
textBox3 = new System.Windows.Forms.TextBox(); addressTextBox = new System.Windows.Forms.TextBox();
label4 = new System.Windows.Forms.Label(); label4 = new System.Windows.Forms.Label();
label5 = new System.Windows.Forms.Label(); label5 = new System.Windows.Forms.Label();
label6 = new System.Windows.Forms.Label();
cityTextBox = new System.Windows.Forms.TextBox();
label7 = new System.Windows.Forms.Label();
zipTextBox = new System.Windows.Forms.TextBox();
SuspendLayout(); SuspendLayout();
// //
// label1 // label1
@ -81,19 +85,19 @@ partial class AddUpdateCustomerForm
label2.Text = "Name"; label2.Text = "Name";
label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// textBox1 // nameTextBox
// //
textBox1.Location = new System.Drawing.Point(12, 87); nameTextBox.Location = new System.Drawing.Point(12, 87);
textBox1.Name = "textBox1"; nameTextBox.Name = "nameTextBox";
textBox1.Size = new System.Drawing.Size(332, 23); nameTextBox.Size = new System.Drawing.Size(332, 23);
textBox1.TabIndex = 4; nameTextBox.TabIndex = 4;
// //
// textBox2 // phoneTextBox
// //
textBox2.Location = new System.Drawing.Point(12, 144); phoneTextBox.Location = new System.Drawing.Point(12, 144);
textBox2.Name = "textBox2"; phoneTextBox.Name = "phoneTextBox";
textBox2.Size = new System.Drawing.Size(332, 23); phoneTextBox.Size = new System.Drawing.Size(332, 23);
textBox2.TabIndex = 6; phoneTextBox.TabIndex = 6;
// //
// label3 // label3
// //
@ -105,12 +109,12 @@ partial class AddUpdateCustomerForm
label3.Text = "Phone"; label3.Text = "Phone";
label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// textBox3 // addressTextBox
// //
textBox3.Location = new System.Drawing.Point(12, 212); addressTextBox.Location = new System.Drawing.Point(12, 212);
textBox3.Name = "textBox3"; addressTextBox.Name = "addressTextBox";
textBox3.Size = new System.Drawing.Size(218, 23); addressTextBox.Size = new System.Drawing.Size(218, 23);
textBox3.TabIndex = 8; addressTextBox.TabIndex = 8;
// //
// label4 // label4
// //
@ -124,26 +128,64 @@ partial class AddUpdateCustomerForm
// //
// label5 // label5
// //
label5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)0)); label5.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)0));
label5.Location = new System.Drawing.Point(248, 212); label5.Location = new System.Drawing.Point(236, 212);
label5.Name = "label5"; label5.Name = "label5";
label5.Size = new System.Drawing.Size(63, 23); label5.Size = new System.Drawing.Size(63, 23);
label5.TabIndex = 9; label5.TabIndex = 9;
label5.Text = "Address"; label5.Text = "Address";
label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; label5.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
// //
// label6
//
label6.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)0));
label6.Location = new System.Drawing.Point(236, 241);
label6.Name = "label6";
label6.Size = new System.Drawing.Size(63, 23);
label6.TabIndex = 11;
label6.Text = "City";
label6.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// cityTextBox
//
cityTextBox.Location = new System.Drawing.Point(12, 241);
cityTextBox.Name = "cityTextBox";
cityTextBox.Size = new System.Drawing.Size(218, 23);
cityTextBox.TabIndex = 10;
//
// label7
//
label7.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)0));
label7.Location = new System.Drawing.Point(236, 270);
label7.Name = "label7";
label7.Size = new System.Drawing.Size(63, 23);
label7.TabIndex = 13;
label7.Text = "Zip code";
label7.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// zipTextBox
//
zipTextBox.Location = new System.Drawing.Point(12, 270);
zipTextBox.Name = "zipTextBox";
zipTextBox.Size = new System.Drawing.Size(218, 23);
zipTextBox.TabIndex = 12;
//
// AddUpdateCustomerForm // AddUpdateCustomerForm
// //
AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
BackColor = System.Drawing.SystemColors.Control; BackColor = System.Drawing.SystemColors.Control;
ClientSize = new System.Drawing.Size(800, 450); ClientSize = new System.Drawing.Size(800, 450);
Controls.Add(label7);
Controls.Add(zipTextBox);
Controls.Add(label6);
Controls.Add(cityTextBox);
Controls.Add(label5); Controls.Add(label5);
Controls.Add(textBox3); Controls.Add(addressTextBox);
Controls.Add(label4); Controls.Add(label4);
Controls.Add(textBox2); Controls.Add(phoneTextBox);
Controls.Add(label3); Controls.Add(label3);
Controls.Add(textBox1); Controls.Add(nameTextBox);
Controls.Add(label2); Controls.Add(label2);
Controls.Add(cancelButton); Controls.Add(cancelButton);
Controls.Add(saveButton); Controls.Add(saveButton);
@ -154,12 +196,17 @@ partial class AddUpdateCustomerForm
PerformLayout(); PerformLayout();
} }
private System.Windows.Forms.Label label6;
private System.Windows.Forms.TextBox cityTextBox;
private System.Windows.Forms.Label label7;
private System.Windows.Forms.TextBox zipTextBox;
private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label5;
private System.Windows.Forms.TextBox textBox1; private System.Windows.Forms.TextBox nameTextBox;
private System.Windows.Forms.TextBox textBox2; private System.Windows.Forms.TextBox phoneTextBox;
private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox textBox3; private System.Windows.Forms.TextBox addressTextBox;
private System.Windows.Forms.Label label4; private System.Windows.Forms.Label label4;
private System.Windows.Forms.Button saveButton; private System.Windows.Forms.Button saveButton;

View File

@ -0,0 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<metadata name="$this.Locked" type="System.Boolean, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e">
<value>True</value>
</metadata>
</root>