Beispiel #1
0
            public no_tableRow Addno_tableRow(string dummykey)
            {
                no_tableRow rowno_tableRow = ((no_tableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    dummykey
                };
                rowno_tableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowno_tableRow);
                return(rowno_tableRow);
            }
Beispiel #2
0
            public no_tableRow Addno_tableRow(int id_no_table)
            {
                no_tableRow rowno_tableRow = ((no_tableRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    id_no_table
                };
                rowno_tableRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowno_tableRow);
                return(rowno_tableRow);
            }
Beispiel #3
0
 public no_tableRowChangeEvent(no_tableRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Beispiel #4
0
 public void Removeno_tableRow(no_tableRow row)
 {
     this.Rows.Remove(row);
 }
Beispiel #5
0
 public void Addno_tableRow(no_tableRow row)
 {
     this.Rows.Add(row);
 }