From DB to datagridview, no wizards allowed
I was looking for an easy way to populate my datagridview, keeping my column headers and without playing around with the properties too much. Here i wrote a method that grab data from a DB, and I used it here to pass it through the screen.
First, I get the data from the DB to a Dataset, so I use a Datatable to order my data and then I used a double for-loop to fill the DGV up.

The only thing missing here is the method inside ConnTool that I used to run my query, here I add a pic of it.


