how does this work? objds.tables(0).select

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi, can the source below actually bind to a ds?

dgDistiAudit.DataSource = objListds.Tables(0).Select("Ntf_Aud = 'T' AND Ntf_fin = 'F'")
dgDistiAudit.DataBind()
 
Hi,

This code actually binds the grid to an array of DataRow; not any dataset.
The data source need not be a DataSet.

hi, can the source below actually bind to a ds?

dgDistiAudit.DataSource = objListds.Tables(0).Select("Ntf_Aud = 'T' AND
Ntf_fin = 'F'")
dgDistiAudit.DataBind()
 
Back
Top