On 1/7/07, Robert Mann <[EMAIL PROTECTED]> wrote:
I have a field of names separated by tabs

Label tab fcdqty
Label tab fcd1qty
Label tab fcd3qty

What I am trying to do is find the second item then once I find it select
the first item in that line, below is what I have tried but does not work

find word tcolname in fld "fieldmatch" - -this seems to work

put the selecetedline in fld "fieldmatch into tline - - this is where I
think my error is just not sure what to change

put item 1 of tline into tncolnames

When finding strings in order to so something with that information,
rather than just displaying it, I prefer to use one of the offset
functions. In your case, here is what I would use:

put lineOffset(tab & tcolname & cr, fld "fieldmatch") into tLine
put item 1 of tline into tncolnames

HTH,
Sarah
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to