Hi everyone!
I've got a situation : There's not enaugh data in my help file .For example no info about Find('-') - what does it mean ('-') and what difference with ('+') and so on . Can anybody give me direction on actual Help ?
Wesleys is right. The C/Side reference guide will help. Also you can press F5 and get a list of valid syntax. From there if you press 'Help', you should get C/Side help.
As for your question, the rec.Find('-') is interpreted as find first instance of the record. The rec.Find('+') is find the last instance of the record. The rec.Find('-') is normally used with Repeat..Until Rec.Next = 0
Also, you will find that a number of C/Side commands are NOT documented in th e online help. For example IF/THEN/ELSE, CASE, FIND and others have no help. However, if you have access to the C/Side Developers Guide document, they are documented there.
Comments
As for your question, the rec.Find('-') is interpreted as find first instance of the record. The rec.Find('+') is find the last instance of the record. The rec.Find('-') is normally used with Repeat..Until Rec.Next = 0