Esempio n. 1
0
            public JOKER1Row AddJOKER1Row(string DATE, int JOKERNUMBER, int NUMBER1, int NUMBER2, int NUMBER3, int NUMBER4, int NUMBER5)
            {
                JOKER1Row rowJOKER1Row = ((JOKER1Row)(this.NewRow()));

                rowJOKER1Row.ItemArray = new object[] {
                    DATE,
                    null,
                    JOKERNUMBER,
                    NUMBER1,
                    NUMBER2,
                    NUMBER3,
                    NUMBER4,
                    NUMBER5
                };
                this.Rows.Add(rowJOKER1Row);
                return(rowJOKER1Row);
            }
Esempio n. 2
0
            public JOKER1Row AddJOKER1Row(System.DateTime DATE, int NUMBER1, int NUMBER2, int NUMBER3, int JOKERNUMBER, int NUMBER5, int NUMBER4)
            {
                JOKER1Row rowJOKER1Row = ((JOKER1Row)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    DATE,
                    NUMBER1,
                    NUMBER2,
                    NUMBER3,
                    null,
                    JOKERNUMBER,
                    NUMBER5,
                    NUMBER4
                };
                rowJOKER1Row.ItemArray = columnValuesArray;
                this.Rows.Add(rowJOKER1Row);
                return(rowJOKER1Row);
            }
Esempio n. 3
0
 public JOKER1RowChangeEvent(JOKER1Row row, DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Esempio n. 4
0
 public void RemoveJOKER1Row(JOKER1Row row)
 {
     this.Rows.Remove(row);
 }
Esempio n. 5
0
 public void AddJOKER1Row(JOKER1Row row)
 {
     this.Rows.Add(row);
 }
Esempio n. 6
0
 public JOKER1RowChangeEvent(JOKER1Row row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }