/*
i-net software provides programming examples for illustration only, without warranty
either expressed or implied, including, but not limited to, the implied warranties
of merchantability and/or fitness for a particular purpose. This programming example
assumes that you are familiar with the programming language being demonstrated and
the tools used to create and debug procedures. i-net software support professionals
can help explain the functionality of a particular procedure, but they will not modify
these examples to provide added functionality or construct procedures to meet your
specific needs.
© i-net software 1998-2013
*/
using Inet.Viewer.WinForms;
namespace Inet.Viewer
{
partial class ReportViewerExample
{
///
/// 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.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ReportViewerExample));
this.txtFile = new System.Windows.Forms.TextBox();
this.btnShowDialog = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
this.reportViewer1 = new Inet.Viewer.WinForms.ReportViewer();
this.tableLayoutPanel1.SuspendLayout();
this.SuspendLayout();
//
// txtFile
//
resources.ApplyResources(this.txtFile, "txtFile");
this.txtFile.Name = "txtFile";
this.txtFile.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtFile_KeyDown);
//
// btnShowDialog
//
resources.ApplyResources(this.btnShowDialog, "btnShowDialog");
this.btnShowDialog.Name = "btnShowDialog";
this.btnShowDialog.UseVisualStyleBackColor = true;
this.btnShowDialog.Click += new System.EventHandler(this.btnShow_Click);
//
// label1
//
resources.ApplyResources(this.label1, "label1");
this.label1.Name = "label1";
//
// toolTip1
//
this.toolTip1.ToolTipTitle = "TooltipTitle";
//
// openFileDialog1
//
this.openFileDialog1.FileName = "openFileDialog1";
resources.ApplyResources(this.openFileDialog1, "openFileDialog1");
//
// tableLayoutPanel1
//
resources.ApplyResources(this.tableLayoutPanel1, "tableLayoutPanel1");
this.tableLayoutPanel1.Controls.Add(this.btnShowDialog, 2, 0);
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
this.tableLayoutPanel1.Controls.Add(this.txtFile, 1, 0);
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
//
// reportViewer1
//
resources.ApplyResources(this.reportViewer1, "reportViewer1");
this.reportViewer1.BackColor = System.Drawing.SystemColors.Control;
this.reportViewer1.CurrentReportView = null;
this.reportViewer1.Name = "reportViewer1";
this.reportViewer1.SearchVisible = false;
this.reportViewer1.ShowToolbar = true;
this.reportViewer1.TabStop = false;
this.reportViewer1.Tag = "ttt";
//
// ReportViewerExample
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.reportViewer1);
this.Controls.Add(this.tableLayoutPanel1);
this.Name = "ReportViewerExample";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ReportViewerExample_FormClosed);
this.tableLayoutPanel1.ResumeLayout(false);
this.tableLayoutPanel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtFile;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.ToolTip toolTip1;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.Button btnShowDialog;
private ReportViewer reportViewer1;
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
}
}