Exemplo n.º 1
0
        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;
        }
Exemplo n.º 2
0
        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;
        }
Exemplo n.º 3
0
        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;
        }