SSpread SSpread1 {
X = 30;
Y = 33;
Width = 341;
Height = 229;
MaxCols=3;
MaxRows=5;
/* Enterキーを押したとき、アクティブセルを右のセルに移動
最終列の場合は次の行の先頭列に移動するよう設定 */
EditEnterAction =$EditEnterActionNext;
Function OnAdvance( e ) {
/* OnAdvance イベントハンドラ */
if (e.AdvanceNext == $TRUE) {
/* 最終列まで移動したら、先頭行の1列目へ移動する。 */
SetActiveCell( 1, 1);
}
}
} |