Code: Select all
on mouseUp
put the dgDataOfLine[2] of group "DataGrid 1" into theArray["R"]
put the text of field "Rfld" into theArray["R"]
set the dgDataOfLine[2] of group "DataGrid 1" to theArray["R"]
end mouseUp
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Code: Select all
on mouseUp
put the dgDataOfLine[2] of group "DataGrid 1" into theArray["R"]
put the text of field "Rfld" into theArray["R"]
set the dgDataOfLine[2] of group "DataGrid 1" to theArray["R"]
end mouseUp
Code: Select all
on mouseUp
put the dgDataOfLine[2] of group "DataGrid 1" into theArray
put the text of field "Rfld" into theArray["R"]
set the dgDataOfLine[2] of group "DataGrid 1" to theArray
end mouseUp