10. Februar 2009 12:38
If recMyRecord.AnderesFlag THEN BEGIN
recMyRecord2.GET(recMyRecord."No.");
recMyRecord2.Flagfeld := FALSE;
recMyRecord2.MODIFY;
IF recMyRecord.FIND('=><') THEN;
END;
10. Februar 2009 13:17
C/SIDE Reference Guide hat geschrieben:This... Tells the system to search for...
'=' A record that equals the key values (default)
'>' A record that is larger than the key values
'<' A record that is less the key values
'+' The last record in the table ('+' can only be used alone)
'-' The first record in the table ('-' can only be used alone)
If SearchStr contains '=', '>' or '<', you must assign values to all fields of the current and primary keys before you call FIND.
10. Februar 2009 14:39
you must assign values to all fields of the current and primary keys before you call FIND