namespace Procedure_Pdf_Page_Count { partial class Form1 { /// /// 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.btnSelectFolder = new System.Windows.Forms.Button(); this.cntPDFPages = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.pageCountView = new System.Windows.Forms.DataGridView(); this.label2 = new System.Windows.Forms.Label(); this.lblTotalPages = new System.Windows.Forms.Label(); this.btnViewReport = new System.Windows.Forms.Button(); ((System.ComponentModel.ISupportInitialize)(this.pageCountView)).BeginInit(); this.SuspendLayout(); // // btnSelectFolder // this.btnSelectFolder.Location = new System.Drawing.Point(88, 87); this.btnSelectFolder.Name = "btnSelectFolder"; this.btnSelectFolder.Size = new System.Drawing.Size(127, 23); this.btnSelectFolder.TabIndex = 0; this.btnSelectFolder.Text = "Select Folder"; this.btnSelectFolder.UseVisualStyleBackColor = true; this.btnSelectFolder.Click += new System.EventHandler(this.btnSelectFolder_Click); // // cntPDFPages // this.cntPDFPages.Location = new System.Drawing.Point(88, 156); this.cntPDFPages.Name = "cntPDFPages"; this.cntPDFPages.Size = new System.Drawing.Size(127, 26); this.cntPDFPages.TabIndex = 1; this.cntPDFPages.Text = "Count Pages"; this.cntPDFPages.UseVisualStyleBackColor = true; this.cntPDFPages.Click += new System.EventHandler(this.cntPDFPages_Click); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Arial Narrow", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(153, 38); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(336, 25); this.label1.TabIndex = 2; this.label1.Text = " Procedure PDF Page Count "; // // pageCountView // this.pageCountView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.pageCountView.Location = new System.Drawing.Point(88, 219); this.pageCountView.Name = "pageCountView"; this.pageCountView.Size = new System.Drawing.Size(488, 222); this.pageCountView.TabIndex = 3; //this.pageCountView.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.pageCountView_CellContentClick); this.pageCountView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.pageCountView_CellDoubleClick); this.pageCountView.CellMouseEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.pageCountView_CellMouseEnter); // // label2 // this.label2.AutoSize = true; this.label2.Location = new System.Drawing.Point(308, 168); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(107, 13); this.label2.TabIndex = 4; this.label2.Text = "Total Pages All PDFs"; // // lblTotalPages // this.lblTotalPages.AutoSize = true; this.lblTotalPages.Location = new System.Drawing.Point(435, 168); this.lblTotalPages.Name = "lblTotalPages"; this.lblTotalPages.Size = new System.Drawing.Size(0, 13); this.lblTotalPages.TabIndex = 5; // // btnViewReport // this.btnViewReport.Enabled = false; this.btnViewReport.Location = new System.Drawing.Point(311, 87); this.btnViewReport.Name = "btnViewReport"; this.btnViewReport.Size = new System.Drawing.Size(75, 23); this.btnViewReport.TabIndex = 6; this.btnViewReport.Text = "View Report"; this.btnViewReport.UseVisualStyleBackColor = true; this.btnViewReport.Click += new System.EventHandler(this.btnViewReport_Click); // // Form1 // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(659, 487); this.Controls.Add(this.btnViewReport); this.Controls.Add(this.lblTotalPages); this.Controls.Add(this.label2); this.Controls.Add(this.pageCountView); this.Controls.Add(this.label1); this.Controls.Add(this.cntPDFPages); this.Controls.Add(this.btnSelectFolder); this.Name = "Form1"; this.Text = "Form1"; ((System.ComponentModel.ISupportInitialize)(this.pageCountView)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button btnSelectFolder; private System.Windows.Forms.Button cntPDFPages; private System.Windows.Forms.Label label1; //private System.Windows.Forms.DataGridView pageCountView; private System.Windows.Forms.DataGridView pageCountView; private System.Windows.Forms.Label label2; private System.Windows.Forms.Label lblTotalPages; private System.Windows.Forms.Button btnViewReport; //private DataGridView pageCountView = new DataGridView(); } }