From the Functions list right click on the bar to the right and click copy, select a new blank line, and click paste.
I know, dead simple right? Some times it helps to have these things out there as it’s easy to miss that this is possible in C/Side.
From the Functions list right click on the bar to the right and click copy, select a new blank line, and click paste.
I know, dead simple right? Some times it helps to have these things out there as it’s easy to miss that this is possible in C/Side.
Using IN with values from an option field to test whether a field is set to one of the values in a subset of the total options.
IF (Status IN [Status::Open, Status::Authorized, Status::Closed] = TRUE) THEN BEGIN
Legend:
A ‘,’ separates items that come in a sequence for instance Alt, F, S would mean press Alt, let go, press F, let go, and finally press S.
A ‘+’ separates keys that are suppose to be pressed at the same time. Alt + D would mean press and hold Alt while pressing D
ALT, V, B – Shows the C/AL globals
ALT, V, A – Shows the C/AL locals
ALT + D – Design the current object
ALT + R – Run the current object
ALT > F > S to save
CTRL + F to find
So when I go to do this again I will have something to refer back to:
WITH r_RecordVariableName DO BEGIN
// SetFilters and SetRanges
IF FIND('-') THEN BEGIN
REPEAT
ForEachRecordDoThis();
UNTIL NEXT = 0;
END;
END;
Theme: Rubric. Blog at WordPress.com.