Klaus, Thank you for your reply. So how do I, ah, uhm, create an index? I tried the following but no cigar. put the dgHilitedLines of group "entriesGrid" into theLine put the dgDataofIndex[theLine] of group "entriesGrid" into tIndex put the dgDataOfLine[theLine] of group "entriesGrid" into tWord put...
Hello, How does one assign a value to a card field? I have a field defined as " rWord ". Then: put the dgDataOfLine[theLine] of group "entriesGrid" into tWord set the text of field "rWord" to tWord But the second line does not assign the value of tWord (yes, it has a value) to the firled " rWord ". ...
I got it to work replacing the repeat loop (it's the Read db into Datagrid I was referring to). repeat with ii = 1 to fld "rCounter" put line ii of dlist into temp dispatch "AddLine" to grp "myGrid" with temp end repeat with the statement: set the dgText of group "myGrid" to ptext What would I be mi...
Hello, I'm trying to learn data grid using CRUD SQLITE example as a test application. The populate data group routine runs to completion with no errors, but no data is displayed on the grid. Wonder what''s going on. The following command appears to be what moves data to the grid. What is AddLine? I ...