OK, I've never used a datagrid control, but with a flexgrid control, you could use a SELECT statement to get the data you wnt from the db, then try this: -

Dim Newline as String

Newline = vbTab & rs!Col1 & vbtab & rs!Col2
fg.Additem Newline

Obviously, fg is the name of my flexgrid, and you would substitute rs.Col1 and rs!Col2 with the proper name for your datasources

the first vbTab is in there to make sure the Grey column on the left does not get filled in. If you want to use this column, then just remove it

hope this is of some help