public profileListRow AddprofileListRow(string up_email)
            {
                profileListRow rowprofileListRow = ((profileListRow)(this.NewRow()));

                object[] columnValuesArray = new object[] {
                    up_email
                };
                rowprofileListRow.ItemArray = columnValuesArray;
                this.Rows.Add(rowprofileListRow);
                return(rowprofileListRow);
            }
 public void RemoveprofileListRow(profileListRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddprofileListRow(profileListRow row)
 {
     this.Rows.Add(row);
 }
 public profileListRowChangeEvent(profileListRow row, global::System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
Exemplo n.º 5
0
 public profileListRowChangeEvent(profileListRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
Exemplo n.º 6
0
 public void RemoveprofileListRow(profileListRow row) {
     this.Rows.Remove(row);
 }
Exemplo n.º 7
0
 public void AddprofileListRow(profileListRow row) {
     this.Rows.Add(row);
 }