Mar 4, 2005 #1 hlybbi Programmer Joined Mar 19, 2003 Messages 91 Location IS can anybody tell me how to select only certent rows from a dataset table Best regards Hlynur http://www.xodus.net
can anybody tell me how to select only certent rows from a dataset table Best regards Hlynur http://www.xodus.net
Mar 4, 2005 #2 checkai Programmer Joined Jan 17, 2003 Messages 1,629 Location US dataset.Tables(0).DefaultView.Table.Rows(0)(7) will give you the first row of the table and the 7th column... Upvote 0 Downvote
dataset.Tables(0).DefaultView.Table.Rows(0)(7) will give you the first row of the table and the 7th column...
Mar 4, 2005 Thread starter #3 hlybbi Programmer Joined Mar 19, 2003 Messages 91 Location IS no like find colum insite a data set like where catagory=5 or username like 'jon%' Best regards Hlynur http://www.xodus.net Upvote 0 Downvote
no like find colum insite a data set like where catagory=5 or username like 'jon%' Best regards Hlynur http://www.xodus.net
Mar 4, 2005 #4 checkai Programmer Joined Jan 17, 2003 Messages 1,629 Location US DataRow [] rows = datatable.Select( "category = 5") then do what you'd like with the rowset... Upvote 0 Downvote