How Do I Find Out Which Line The Mouse Is Over?
Each data grid row has a dgDataControl property that returns the long id of the control. Each control also has a dgLine and dgIndex property. You can combine the two in order to get the control the mouse is over.
put the dgDataControl of the mousecontrol into theControl
if theControl is not empty then
put the dgLine of theControl into theLineNo
end if
Where do I put this script so that I can return the values in the row as the mouse enters each row? I'd like to do a "popout" of the data in each row and put that data into this "popout" as it moves over each row. The popout would appear (with the contents of the row below it) when entering the row and close as it leaves the row. This would do the same for each row entered with the mouse over. Something I saw on TV - pretty cool.