How do i use the rowfilter parameter in the dataview. I have an integer representation of the row I need but this requires some sort of name value pair. Is there a way i can directly use my integer?
irishdunn
Posts
-
dataMemember reference row in table -
dataMemember reference row in tableStill cant figure this out here is my poopy code: newTBox.DataBindings.Add("Text", _Data.Tables[_tableName].Rows[_rowIndex], _tableName + "." + field, false);
-
use other name of classclass Nocc { #region Variables private int _no; #endregion #region Constructors public Nocc() { } #endregion #region Properties public int No { get {return (_no);} set {_no = value;} } #endregion } I have no idea what your asking for... I just like #regions ;P
-
dataMemember reference row in tableNo I am working with a supplied dataset, so I will have to navigate through it properly. I am trying now to get something like this to work: ("Checked", Data.Tables[_tableName].Rows[_rowIndex], field, false); don't think thats gonna hack it though help!:confused:
-
dataMemember reference row in tableI am trying to bind a control to this dataset and have been successful thus far, problem is I want to be able to specify the row in the table the control is binding to. Apologize for any ineptitudes in advanced, very new to this. sample: newTBox.DataBindings.Add("Text", _Data, _tableName + "." + field, false); I want to do something like this: newTBox.DataBindings.Add("Text", _Data, _tableName + "[" + _rowNumber + "]" + "." + field, false); right now it is always binding to the 0th row in my table. Thanks in advance