I have a datagrid form with Customized Template and without column headers, I want to get the data from it, I have used this code:
Code: Select all
repeat for each item theIndex in the dgIndexes of group "resdg"
put the dgDataOfIndex[theIndex] of group "resdg" into theDataA
if theDataA["name"] is not empty then
answer theDataA["name"]
end if
end repeat
How to get the first record?
Many thanks,