// // (C) Copyright 2003-2007 by Autodesk, Inc. // // Permission to use, copy, modify, and distribute this software in // object code form for any purpose and without fee is hereby granted, // provided that the above copyright notice appears in all copies and // that both that copyright notice and the limited warranty and // restricted rights notice below appear in all supporting // documentation. // // AUTODESK PROVIDES THIS PROGRAM "AS IS" AND WITH ALL FAULTS. // AUTODESK SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTY OF // MERCHANTABILITY OR FITNESS FOR A PARTICULAR USE. AUTODESK, INC. // DOES NOT WARRANT THAT THE OPERATION OF THE PROGRAM WILL BE // UNINTERRUPTED OR ERROR FREE. // // Use, duplication, or disclosure by the U.S. Government is subject to // restrictions set forth in FAR 52.227-19 (Commercial Computer // Software - Restricted Rights) and DFAR 252.227-7013(c)(1)(ii) // (Rights in Technical Data and Computer Software), as applicable. // namespace Revit.SDK.Samples.ProjectInfo.CS { partial class ProjectInfoForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.label1 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.nameTextBox = new System.Windows.Forms.TextBox(); this.numberTextBox = new System.Windows.Forms.TextBox(); this.clientNameTextBox = new System.Windows.Forms.TextBox(); this.statusTextBox = new System.Windows.Forms.TextBox(); this.issueDateTextBox = new System.Windows.Forms.TextBox(); this.addressTextBox = new System.Windows.Forms.TextBox(); this.okButton = new System.Windows.Forms.Button(); this.cancelButton = new System.Windows.Forms.Button(); this.label8 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.buildingTypeComboBox = new System.Windows.Forms.ComboBox(); this.zipCodeTextBox = new System.Windows.Forms.TextBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox1.SuspendLayout(); this.SuspendLayout(); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(19, 19); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(71, 13); this.label1.TabIndex = 0; this.label1.Text = "Project Name"; // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(9, 54); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(81, 13); this.label2.TabIndex = 0; this.label2.Text = "Project Number"; // // label3 // this.label3.AutoSize = true; this.label3.Location = new System.Drawing.Point(23, 89); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(67, 13); this.label3.TabIndex = 1; this.label3.Text = "Client Name "; // // label4 // this.label4.AutoSize = true; this.label4.Location = new System.Drawing.Point(52, 124); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(38, 13); this.label4.TabIndex = 1; this.label4.Text = "Status"; // // label5 // this.label5.AutoSize = true; this.label5.Location = new System.Drawing.Point(31, 159); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(59, 13); this.label5.TabIndex = 1; this.label5.Text = "Issue Date"; // // label6 // this.label6.AutoSize = true; this.label6.Location = new System.Drawing.Point(41, 194); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(49, 13); this.label6.TabIndex = 1; this.label6.Text = "Address "; // // label7 // this.label7.AutoSize = true; this.label7.Location = new System.Drawing.Point(10, 254); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(67, 13); this.label7.TabIndex = 1; this.label7.Text = "Energy Data"; // // nameTextBox // this.nameTextBox.Location = new System.Drawing.Point(96, 16); this.nameTextBox.Name = "nameTextBox"; this.nameTextBox.Size = new System.Drawing.Size(223, 21); this.nameTextBox.TabIndex = 2; // // numberTextBox // this.numberTextBox.Location = new System.Drawing.Point(96, 51); this.numberTextBox.Name = "numberTextBox"; this.numberTextBox.Size = new System.Drawing.Size(223, 21); this.numberTextBox.TabIndex = 3; // // clientNameTextBox // this.clientNameTextBox.Location = new System.Drawing.Point(96, 86); this.clientNameTextBox.Name = "clientNameTextBox"; this.clientNameTextBox.Size = new System.Drawing.Size(223, 21); this.clientNameTextBox.TabIndex = 4; // // statusTextBox // this.statusTextBox.Location = new System.Drawing.Point(96, 121); this.statusTextBox.Name = "statusTextBox"; this.statusTextBox.Size = new System.Drawing.Size(223, 21); this.statusTextBox.TabIndex = 5; // // issueDateTextBox // this.issueDateTextBox.Location = new System.Drawing.Point(96, 156); this.issueDateTextBox.Name = "issueDateTextBox"; this.issueDateTextBox.Size = new System.Drawing.Size(223, 21); this.issueDateTextBox.TabIndex = 6; // // addressTextBox // this.addressTextBox.Location = new System.Drawing.Point(96, 191); this.addressTextBox.Multiline = true; this.addressTextBox.Name = "addressTextBox"; this.addressTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.addressTextBox.Size = new System.Drawing.Size(223, 57); this.addressTextBox.TabIndex = 7; // // okButton // this.okButton.Location = new System.Drawing.Point(172, 356); this.okButton.Name = "okButton"; this.okButton.Size = new System.Drawing.Size(75, 23); this.okButton.TabIndex = 1; this.okButton.Text = "&OK"; this.okButton.UseVisualStyleBackColor = true; this.okButton.Click += new System.EventHandler(this.okButton_Click); // // cancelButton // this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; this.cancelButton.Location = new System.Drawing.Point(253, 356); this.cancelButton.Name = "cancelButton"; this.cancelButton.Size = new System.Drawing.Size(75, 23); this.cancelButton.TabIndex = 0; this.cancelButton.Text = "&Cancel"; this.cancelButton.UseVisualStyleBackColor = true; // // label8 // this.label8.AutoSize = true; this.label8.Location = new System.Drawing.Point(8, 48); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(70, 13); this.label8.TabIndex = 4; this.label8.Text = "Building Type"; // // label9 // this.label9.AutoSize = true; this.label9.Location = new System.Drawing.Point(14, 17); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(64, 13); this.label9.TabIndex = 4; this.label9.Text = "Postal Code"; // // buildingTypeComboBox // this.buildingTypeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.buildingTypeComboBox.FormattingEnabled = true; this.buildingTypeComboBox.Location = new System.Drawing.Point(84, 45); this.buildingTypeComboBox.Name = "buildingTypeComboBox"; this.buildingTypeComboBox.Size = new System.Drawing.Size(223, 21); this.buildingTypeComboBox.TabIndex = 1; // // zipCodeTextBox // this.zipCodeTextBox.Location = new System.Drawing.Point(84, 14); this.zipCodeTextBox.Name = "zipCodeTextBox"; this.zipCodeTextBox.Size = new System.Drawing.Size(223, 21); this.zipCodeTextBox.TabIndex = 0; // // groupBox1 // this.groupBox1.Controls.Add(this.buildingTypeComboBox); this.groupBox1.Controls.Add(this.zipCodeTextBox); this.groupBox1.Controls.Add(this.label9); this.groupBox1.Controls.Add(this.label8); this.groupBox1.Location = new System.Drawing.Point(12, 270); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(316, 81); this.groupBox1.TabIndex = 9; this.groupBox1.TabStop = false; // // ProjectInfoForm // this.AcceptButton = this.okButton; this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.CancelButton = this.cancelButton; this.ClientSize = new System.Drawing.Size(340, 391); this.Controls.Add(this.groupBox1); this.Controls.Add(this.cancelButton); this.Controls.Add(this.okButton); this.Controls.Add(this.addressTextBox); this.Controls.Add(this.issueDateTextBox); this.Controls.Add(this.statusTextBox); this.Controls.Add(this.clientNameTextBox); this.Controls.Add(this.numberTextBox); this.Controls.Add(this.nameTextBox); this.Controls.Add(this.label7); this.Controls.Add(this.label6); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.label3); this.Controls.Add(this.label2); this.Controls.Add(this.label1); this.Font = new System.Drawing.Font("Tahoma", 8.25F); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ProjectInfoForm"; this.ShowInTaskbar = false; this.Text = "Project Information"; this.groupBox1.ResumeLayout(false); this.groupBox1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Label label1; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label label3; private System.Windows.Forms.Label label4; private System.Windows.Forms.Label label5; private System.Windows.Forms.Label label6; private System.Windows.Forms.Label label7; private System.Windows.Forms.TextBox nameTextBox; private System.Windows.Forms.TextBox numberTextBox; private System.Windows.Forms.TextBox clientNameTextBox; private System.Windows.Forms.TextBox statusTextBox; private System.Windows.Forms.TextBox issueDateTextBox; private System.Windows.Forms.TextBox addressTextBox; private System.Windows.Forms.Button okButton; private System.Windows.Forms.Button cancelButton; private System.Windows.Forms.Label label8; private System.Windows.Forms.Label label9; private System.Windows.Forms.ComboBox buildingTypeComboBox; private System.Windows.Forms.TextBox zipCodeTextBox; private System.Windows.Forms.GroupBox groupBox1; } }