My datagrid has only 2 columns: "Name" (free format text) and "Paid" (either "T" or "F"; this is the column with the checkbox).The handler: SetDataOfLine has reached the recursion limit of 400000
Execution will be terminated to prevent hanging
Here is the handler: (it's in the Column Behaviour for the "Paid" column)
Code: Select all
on mouseUp pMouseBtnNum
if pMouseBtnNum is 1 then
# Update internal value in data grid
if the hilite of the target is true then
SetDataOfLine the dgLine of me, "Paid", "T"
else
SetDataOfLine the dgLine of me, "Paid", "F"
end if
end if
Please would someone put me out of my misery ?
(I'm using Rev 3.5 on XP home)
Pete