|
web
newsgroups
|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
playing around a DataGridI have a view which return 1000 numbers and amounts like this: Number Amount 000 234 001 3456 .... ... 999 464 I have only two very long columns. is it possible to re-arrange this into a DataGrid to get something like this: number amount number amount number amount 000 345 001 9861 002 865 003 4564 004 45 005 9865 or should I use a different control? thks. -- Kenny M. DataList allows repeating items in different directions. Look at
RepeatColumns and RepeatDirections properties. Eliyahu Show quoteHide quote "Kenny M." <Ken***@discussions.microsoft.com> wrote in message news:AE8A6E9D-344F-4D6F-859C-223CB559799C@microsoft.com... > hi > > I have a view which return 1000 numbers and amounts like this: > > Number Amount > 000 234 > 001 3456 > ... ... > 999 464 > > I have only two very long columns. is it possible to re-arrange this into a > DataGrid to get something like this: > > number amount number amount number amount > 000 345 001 9861 002 865 > 003 4564 004 45 005 9865 > > or should I use a different control? > > thks. > > > > -- > Kenny M. |
|||||||||||||||||||||||