Set rs = conn.Execute(Statement) //rs has 6 fields
I want to add the current row of rs, to the DataGrid. How could I do that?
Sample:
DataGrid1.<someFunction (say AddRow)> = <some operations with rs.Fields (say, Str(rs.Fields(0)) & rs.Fields(1) & rs.Fields(2) & Str(rs.Fields(3)) & Str(rs.Fields(4)) & Str(rs.Fields(5)) >;
You can add a new row like this.
And columns like this
After that you can fill the grid like this.