-
Here´s the problem...
Im using an ado data control for my database.
i´m using some textbox to see information of some columns of my table.
But i also want a grid that shows just two columns,(id number and name) not all the table...
How can i do that!!
-
Either you can make another ADO and use a SELECT statment to just show the info you need and bind that to the grid or just go into the properties of the grid and make the columns you don't want visible=false.
-
You can uncheck the visible property to false for the columns that you don't want to appear in the grid.
This will keep you from using another object.