try:
Dim articlename As String = ds.tables(0).rows(0)(1).toString()
Dim articledate As String = ds.tables(0).rows(0)(2).toString()
Dim articlecopy As String = ds.tables(0).rows(0)(3).toString()
Dim authorsalutation As String = ds.tables(0).rows(0)(4).toString()
Dim authorname As String = ds.tables(0).rows(0)(5).toString()
assuming you have one table in ds and you want the first row columns to be assigned to your variables...