vb.net - display datatable text -
i have data table many rows , columns. how can display value (text) in row 1 column 1 message box?
i able display row count, can't seem figure out how display actual contents of cells.
i'm using vs2012, , coding in vb
try,
messagebox.show(datatabelname.rows(1)(1))
Comments
Post a Comment