| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- namespace qdr.app.studiou.orders2printpack
- {
- partial class dlgProtocol
- {
- /// <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()
- {
- butCancel = new Button();
- butOk = new Button();
- label1 = new Label();
- tbExternalOrder = new TextBox();
- label2 = new Label();
- tbProtocolFile = new TextBox();
- label3 = new Label();
- butOpenProt = new Button();
- dtExternaOrderDate = new DateTimePicker();
- dlgSave = new SaveFileDialog();
- SuspendLayout();
- //
- // butCancel
- //
- butCancel.Location = new Point(493, 278);
- butCancel.Name = "butCancel";
- butCancel.Size = new Size(94, 29);
- butCancel.TabIndex = 0;
- butCancel.Text = "Zrušit";
- butCancel.UseVisualStyleBackColor = true;
- butCancel.Click += butCancel_Click;
- //
- // butOk
- //
- butOk.Location = new Point(21, 278);
- butOk.Name = "butOk";
- butOk.Size = new Size(94, 29);
- butOk.TabIndex = 1;
- butOk.Text = "Ok";
- butOk.UseVisualStyleBackColor = true;
- butOk.Click += butOk_Click;
- //
- // label1
- //
- label1.AutoSize = true;
- label1.Location = new Point(14, 10);
- label1.Name = "label1";
- label1.Size = new Size(227, 20);
- label1.TabIndex = 2;
- label1.Text = "Číslo objednávky z tiskové služby";
- //
- // tbExternalOrder
- //
- tbExternalOrder.Location = new Point(19, 32);
- tbExternalOrder.Name = "tbExternalOrder";
- tbExternalOrder.Size = new Size(568, 27);
- tbExternalOrder.TabIndex = 3;
- //
- // label2
- //
- label2.AutoSize = true;
- label2.Location = new Point(14, 66);
- label2.Name = "label2";
- label2.Size = new Size(240, 20);
- label2.TabIndex = 4;
- label2.Text = "Datum objednávky z tiskové služby";
- //
- // tbProtocolFile
- //
- tbProtocolFile.Location = new Point(19, 149);
- tbProtocolFile.Name = "tbProtocolFile";
- tbProtocolFile.ReadOnly = true;
- tbProtocolFile.Size = new Size(523, 27);
- tbProtocolFile.TabIndex = 7;
- //
- // label3
- //
- label3.AutoSize = true;
- label3.Location = new Point(14, 127);
- label3.Name = "label3";
- label3.Size = new Size(126, 20);
- label3.TabIndex = 6;
- label3.Text = "Soubor protoloku";
- //
- // butOpenProt
- //
- butOpenProt.Location = new Point(555, 149);
- butOpenProt.Name = "butOpenProt";
- butOpenProt.Size = new Size(32, 29);
- butOpenProt.TabIndex = 8;
- butOpenProt.Text = "...";
- butOpenProt.UseVisualStyleBackColor = true;
- butOpenProt.Click += butOpenProt_Click;
- //
- // dtExternaOrderDate
- //
- dtExternaOrderDate.Format = DateTimePickerFormat.Short;
- dtExternaOrderDate.Location = new Point(18, 93);
- dtExternaOrderDate.Name = "dtExternaOrderDate";
- dtExternaOrderDate.Size = new Size(569, 27);
- dtExternaOrderDate.TabIndex = 9;
- //
- // dlgSave
- //
- dlgSave.DefaultExt = "*.csv";
- dlgSave.Filter = "CSV file (*.csv)|*.csv";
- dlgSave.RestoreDirectory = true;
- dlgSave.Title = "Vyberte název pro soubor protokolu.";
- //
- // dlgProtocol
- //
- AutoScaleDimensions = new SizeF(8F, 20F);
- AutoScaleMode = AutoScaleMode.Font;
- ClientSize = new Size(606, 327);
- Controls.Add(dtExternaOrderDate);
- Controls.Add(butOpenProt);
- Controls.Add(tbProtocolFile);
- Controls.Add(label3);
- Controls.Add(label2);
- Controls.Add(tbExternalOrder);
- Controls.Add(label1);
- Controls.Add(butOk);
- Controls.Add(butCancel);
- FormBorderStyle = FormBorderStyle.FixedDialog;
- MaximizeBox = false;
- MinimizeBox = false;
- Name = "dlgProtocol";
- Text = "Generování protokolu";
- Load += dlgProtocol_Load;
- ResumeLayout(false);
- PerformLayout();
- }
- #endregion
- private Button butCancel;
- private Button butOk;
- private Label label1;
- private TextBox tbExternalOrder;
- private Label label2;
- private TextBox tbProtocolFile;
- private Label label3;
- private Button butOpenProt;
- private DateTimePicker dtExternaOrderDate;
- private SaveFileDialog dlgSave;
- }
- }
|