Exemplo n.º 1
0
            public QCRow AddQCRow(string QCNO, string SEQ, int VALUE)
            {
                QCRow rowQCRow = ((QCRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    QCNO,
                    SEQ,
                    VALUE
                };
                rowQCRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowQCRow);
                return(rowQCRow);
            }
Exemplo n.º 2
0
 public void RemoveQCRow(QCRow row)
 {
     this.Rows.Remove(row);
 }
Exemplo n.º 3
0
 public void AddQCRow(QCRow row)
 {
     this.Rows.Add(row);
 }
Exemplo n.º 4
0
 public QCRowChangeEvent(QCRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }