Code: Select all
set the dgData of group "GeneralTableGrid" to GeneralTableArray
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
set the dgData of group "GeneralTableGrid" to GeneralTableArray
Code: Select all
on mouseUp
put "A" & tab & "B" & return & "C" & tab & "D" into temp
set the dgtext of grp 1 to temp
end mouseUp
Code: Select all
on mouseUp
answer the dgtext of grp 1
end mouseUp
Code: Select all
dispatch "RefreshIndex" to group "GeneralTableGrid"
Code: Select all
dispatch "ResetList" to group "GeneralTableGrid"
Code: Select all
on mouseUp
put "" & tab & "" & return & "" & tab & "" & return & "A" & tab & "B" & return & "C" & tab & "D" into temp
set the dgText of grp "CCC" to temp
end mouseUp