Oh, Aye, the dataGrid . . .
. . . Personally the dataGrid gives be the dry boak as, while undoubtedly being very clever, it seems
needlessly cumbersome (stole that word from Klaus) and awkward.
Surely it would be a whole lot easier to make up one's own grid of simple fields
named sequentially [erm: a1, a2, a3, a4, b1, b2, b3 and so on] that are then grouped?
-
-
Code: Select all
on mouseUp
   put 1 into FNUM
   repeat until FNUM > 6
      put 1 into SNUM
      repeat until SNUM > 20
      clone fld "fx"
      set the name of last fld to (FNUM & "x" & SNUM)
      set the topLeft of last fld to ((FNUM * 100),(100 + (SNUM * 30)))
      add 1 to SNUM
      end repeat
      add 1 to FNUM
   end repeat
end mouseUp