I can't figure out where I'm going wrong here.
the first line of fld "chapter info" is
(these items are tab delimited)[chapterID] 01
So when I put this line in the Message Box,
Code: Select all
put lineoffset(tab & "01",fld "chapter info")
However, my ACTUAL code doesn't work:
Code: Select all
put the selectedtext of fld "downloadlist" into tChap
put lineoffset(tab & tChap,fld "Chapter info") into tLine
What is going on?? I mean, I can always do a repeat for each line, that searches for an item 2 of tLine equal to tChap, but that's just so messy...