[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[jfriends] Re:JBuilder2のGridControl複数行




SOLです。
Niftyって、題名の長さに制限があるのですね。
すかりこんと忘れていまして、半端な題名になってしまいました。
以後気を付けます。

井浪さま、
大竹さま
ありがとうございました。
動作確認しましたので、ご報告します。
 #ほとんど大竹さんの例のままです。えへへ。(^○^)

−−−−−−−−−− ここから −−−−−−−−−−     
import borland.jbcl.model.*;
(中略)
GridControl gridControl1 = new GridControl();
(中略)
 MatrixSelection ms = gridControl1.getSelection();
 MatrixLocation ml[] = ms.getAll();
  //列数
 int iColCnt = gridControl1.getColumnCount();    
 // 選択行数        (↓ こんなメソッドもありました。)
 int iSelRowCnt = ms.getCount() / iColCnt;    
 // 選択行インデックス作成
 int iSelInx[] = new int[iSelRowCnt];  
   for(int iRow=0; iRow<iSelRowCnt ; iRow++){
     iSelInx[iRow] = mlTransOpe[iRow * iColCnt].row;
  }
−−−−−−−−−− ここまで −−−−−−−−−−     

TAKAHASHI Chika  XMA04773@xxxxxxxxxx