Paxar 6039 Printer User Manual


 
A-36 Programmer’s Manual
// lblScanBarcode
this.lblScanBarcode.Font = new
System.Drawing.Font("Tahoma", 9F,
System.Drawing.FontStyle.Bold);
this.lblScanBarcode.Location = new
System.Drawing.Point(8, 24);
this.lblScanBarcode.Size = new System.Drawing.Size(100,
16);
this.lblScanBarcode.Text = "Scan Barcode";
// txtScanData
this.txtScanData.Location = new System.Drawing.Point(8,
40);
this.txtScanData.Multiline = true;
this.txtScanData.Size = new System.Drawing.Size(208, 20);
this.txtScanData.Text = "";
// lblStatus
this.lblStatus.Location = new System.Drawing.Point(8,
216);
this.lblStatus.Size = new System.Drawing.Size(224, 24);
this.lblStatus.TextAlign =
System.Drawing.ContentAlignment.TopCenter;
// Form1
this.ClientSize = new System.Drawing.Size(242, 272);
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.lblLength);
this.Controls.Add(this.txtScanLength);
this.Controls.Add(this.txtScanType);
this.Controls.Add(this.lblType);
this.Controls.Add(this.lblScanBarcode);
this.Controls.Add(this.txtScanData);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Text = "Scan & Print Sample";
this.WindowState =
System.Windows.Forms.FormWindowState.Maximized;
this.Load += new System.EventHandler(this.Form1_Load);
}
#endregion