92 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace VEPROMS
 | |
| {
 | |
| 	partial class dlgCheckedOutProcedure
 | |
| 	{
 | |
| 		/// <summary>
 | |
| 		/// Required designer variable.
 | |
| 		/// </summary>
 | |
| 		private System.ComponentModel.IContainer components = null;
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Clean up any resources being used.
 | |
| 		/// </summary>
 | |
| 		/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
 | |
| 		protected override void Dispose(bool disposing)
 | |
| 		{
 | |
| 			if (disposing && (components != null))
 | |
| 			{
 | |
| 				components.Dispose();
 | |
| 			}
 | |
| 			base.Dispose(disposing);
 | |
| 		}
 | |
| 
 | |
| 		#region Windows Form Designer generated code
 | |
| 
 | |
| 		/// <summary>
 | |
| 		/// Required method for Designer support - do not modify
 | |
| 		/// the contents of this method with the code editor.
 | |
| 		/// </summary>
 | |
| 		private void InitializeComponent()
 | |
| 		{
 | |
| 			this.lblInfo = new System.Windows.Forms.Label();
 | |
| 			this.btnOkay = new System.Windows.Forms.Button();
 | |
| 			this.btnForce = new System.Windows.Forms.Button();
 | |
| 			this.SuspendLayout();
 | |
| 			// 
 | |
| 			// lblInfo
 | |
| 			// 
 | |
| 			this.lblInfo.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
 | |
| 									| System.Windows.Forms.AnchorStyles.Right)));
 | |
| 			this.lblInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
 | |
| 			this.lblInfo.Location = new System.Drawing.Point(12, 9);
 | |
| 			this.lblInfo.Name = "lblInfo";
 | |
| 			this.lblInfo.Size = new System.Drawing.Size(610, 149);
 | |
| 			this.lblInfo.TabIndex = 0;
 | |
| 			this.lblInfo.Text = "label1";
 | |
| 			// 
 | |
| 			// btnOkay
 | |
| 			// 
 | |
| 			this.btnOkay.DialogResult = System.Windows.Forms.DialogResult.OK;
 | |
| 			this.btnOkay.Location = new System.Drawing.Point(547, 172);
 | |
| 			this.btnOkay.Name = "btnOkay";
 | |
| 			this.btnOkay.Size = new System.Drawing.Size(75, 30);
 | |
| 			this.btnOkay.TabIndex = 1;
 | |
| 			this.btnOkay.Text = "Okay";
 | |
| 			this.btnOkay.UseVisualStyleBackColor = true;
 | |
| 			// 
 | |
| 			// btnForce
 | |
| 			// 
 | |
| 			this.btnForce.Location = new System.Drawing.Point(418, 172);
 | |
| 			this.btnForce.Name = "btnForce";
 | |
| 			this.btnForce.Size = new System.Drawing.Size(123, 30);
 | |
| 			this.btnForce.TabIndex = 2;
 | |
| 			this.btnForce.Text = "Force Check In";
 | |
| 			this.btnForce.UseVisualStyleBackColor = true;
 | |
| 			this.btnForce.Click += new System.EventHandler(this.btnForce_Click);
 | |
| 			// 
 | |
| 			// dlgCheckedOutProcedure
 | |
| 			// 
 | |
| 			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
 | |
| 			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
| 			this.ClientSize = new System.Drawing.Size(634, 214);
 | |
| 			this.Controls.Add(this.btnForce);
 | |
| 			this.Controls.Add(this.btnOkay);
 | |
| 			this.Controls.Add(this.lblInfo);
 | |
| 			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
 | |
| 			this.MaximizeBox = false;
 | |
| 			this.MinimizeBox = false;
 | |
| 			this.Name = "dlgCheckedOutProcedure";
 | |
| 			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
 | |
| 			this.Text = "Checked Out Procedure";
 | |
| 			this.Load += new System.EventHandler(this.dlgCheckedOutProcedure_Load);
 | |
| 			this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.Label lblInfo;
 | |
| 		private System.Windows.Forms.Button btnOkay;
 | |
| 		private System.Windows.Forms.Button btnForce;
 | |
| 	}
 | |
| } | 
