View Single Post
  #4 (permalink)  
Old 11-17-2008, 05:44 PM
Erel's Avatar
Erel Erel is offline
Administrator
 
Join Date: Apr 2007
Posts: 15,645
Awards Showcase
Basic4ppc Founder 
Total Awards: 1
Default

Quote:
Actually NO....
I was using it to ref the collumns, but I can use a label for that...
Nice tip..
You should test it, I'm not sure if the user can drag the vertical lines or not.

Quote:
BTW, how can we add a collumn after a sql "table read" (this is the easy part), and then make this newly added collumn, the FIRST collumn...???
You should add it during the query:
Code:
cmd.CommandText = "SELECT '' AS newcol, table1.* FROM table1"
Reply With Quote