PDA

Click to See Complete Forum and Search --> : Grid selection


ALFA117
Nov 5th, 2000, 05:37 PM
Im using an ado data control for my database...
Which grid should i use for, showing just some columns of my table.
And how do i configure the grid.
thanks in advance

makai
Nov 5th, 2000, 11:41 PM
the DBGrid is the easiest because it automatically populates itself

use an sql statement for the recordsource of the data control to return just the columns that you want

this would return just 2 columns in the Titles table:

"SELECT Author, Title FROM Titles"