public void setData(agapeDataSet.AGAPE_RFIDRow row) { this.row = row; this.ordNumLabel.Text = row.NumeroOrdine; this.orderDateLabel.Text = row.DataOrdine.ToShortDateString(); this.codArtLabel.Text = row.CodArt; this.descArtLabel.Text = row.DescrizioneArticolo; }
public Scan(agapeDataSet.AGAPE_RFIDRow row) { InitializeComponent(); this.row = row; this.ordNumLabel.Text = row.NumeroOrdine; this.orderDateLabel.Text = row.DataOrdine.ToShortDateString(); this.codArtLabel.Text = row.CodArt; this.descArtLabel.Text = row.DescrizioneArticolo; }
public DataEntry(agapeDataSet.AGAPE_RFIDRow row, DateTime exitDate, Scan scanForm) { InitializeComponent(); this.row = row; this.exitDate = exitDate; this.scanForm = scanForm; this.KeyPreview = true; if (host == null) host = new ATHF_DLL_NET.C_HFHost(this); if(!openFlag) openFlag = host.AT570RFID_Port_Open(); host.ActivateForm = this; this.currentRetries = 0; this.currentBlock = 0; }