2008/03/13(Thu) 15:37:28 編集(投稿者)
■No15472 (little-potato さん) に返信
> コードは、どうする。
>
地道に、行列を入れ替えるプログラムを組むだけです。
GridViewで行・列の入れ替え
http://www.atmarkit.co.jp/bbs/phpBB/viewtopic.php?topic=43838&forum=7
未確認です。
Dim dtList As New DataTable
Dim drRow As DataRow
dtList.Column.Add("カラム")
dtList.Column.Add("Value1")
dtList.Column.Add("Value2")
For i As integer = 1 to xx
drRow = dtList.NewRow
drRow("カラム") = "カラム" & i
drRow("Value1") = 値1 & i
drRow("Value2") = 値2 & i
dtList.Row.Add(drRow)
Next