It's almost working, as I can list all the source titles without any problems. An outer loop cycles through INDI records, and an inner loop through their birth sources (~.BIRT.SOUR). I can get citation and text ok for split sources, but all the lumped sources (mostly GRO Indexes) are blank. The output is shown in the screen grab, and the part of the code that walks through the source and pulls out relevant details is shown below.
Code: Select all
ptrP:MoveTo(ptrL, '~.TITL')
tblTITL[count] = fhGetValueAsText(ptrP)
ptrP:MoveTo(ptrL, '~.PUBL')
tblPUBL[count] = fhGetValueAsText(ptrP)
ptrP:MoveTo(ptrL, '~.TEXT')
tblTEXT[count] = fhGetValueAsText(ptrP)
ptrP:MoveTo(ptrL, '~.PAGE')
tblPAGE[count] = fhGetValueAsText(ptrP)
ptrP:MoveTo(ptrL, '~.DATA.TEXT')
tblTEXTc[count] = fhGetValueAsText(ptrP)
ptrS:MoveNext('SAME_TAG')Is it a simple typo, or am I doing something fundamentally wrong?