Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
[OT] Help in translation
Message
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01133783
Message ID:
01135498
Views:
15
Unfortunately, an insufficient number of people have responded to my request to help with the correction of the English text that is required to complete my work. I am very grateful to those who have responded. Yet, I am once again humbly repeating my request for help. If you can spend a maximum of 50 minutes of time in order to correct a broken English text of the type:
[The sample of the text]
The priority of a finding of the maximal value in case a context of search contains elements of different types,
It is assumed, that the maximal value for Numeric (Currency) elements is searched, thus Currency elements (if will meet) will be converted in numeric, in case in a context of search there was no Numeric (Currency) element, it is assumed, that the maximal value for Character elements if in a context of search there was no Character element is searched, it is assumed, that the maximal value for elements of type DateTime is searched thus elements of type date (if will meet) date, time will be transformed to elements of type.
In case of when any of elements above-mentioned type will not meet the logical .F, will be returned.
[End the sample of the text]
If you would like to help me, please send an email to udfunctions@gmail.com
(Subject: Help in translation) or post a private message at the forum.
Each assistant will be very valuable.

Here is the list of functions from the library.
IFOR() - Immediate FOR cycle.
IWHILE() - Immediate WHILE cycle.
ICASE() - Evaluates the results from a list of conditions.
IEXECCASE() - Evaluates the results and executes the commands from a list of conditions.
IEXECIF() - Returns one of two values and executes one of two string of the commands depending on the value of a logical expression.
EXECUTE() - Execute the commands from a string, unlike a macro substitution can execute the several commands from one string and returns the result.
FIELDNUM() - Returns the field number, referenced by name of a field, in a table.
DANSLISTE() - Determines whether a numeric expression is contained in the list of values of type «1,5,13-18»
INCREMENT() - Increments or decrements the value of a variable passed by reference by one and returns the result
Working with arrays
ARRAYSUM() - Totals all or specified numeric elements in the selected column of an array.
ARRAYAVG() - Computes the arithmetic average of all or specified numeric elements in the selected column of an array.
ARRAYMIN() - Evaluates all or specified elements in the selected column of an array and returns the element and optional number of row with the minimum value.
ARRAYMAX() - Evaluates all or specified elements in the selected column of an array and returns the element and optional number of row with the maximum value.
ARRAYCNT() - Counts all or specified numeric elements in the selected column of the array.
ASCANQUICK() - Unlike the built-in function ASCAN(), performs a binary search in the selected column of a sorted array for an element containing the same data and data type as an expression.
VITESCAN() - Performs a binary search in the selected column of a sorted array for an element containing the same data and data type as an expression. This function is more simple than ASCANQUICK().

The ST_DENIS library is available for all versions Visual FoxPro through 9.0 and for FoxPro 2.6 for DOS.
The VFP library is ST_DENIS.FLL and the FoxPro for DOS library is ST_DENIS.PLB.

To register the library in your programs, use one of the SET LIBRARY commands:
SET LIBRARY TO ST_DENIS.FLL ADDITIVE && for VFP
or
SET LIBRARY TO ST_DENIS.PLB ADDITIVE && for FoxPro for DOS
It is best to place the library file in your search path (SET PATH command).
If it is not in your search path, you will need to specify the path to the library file in the SET LIBRARY command:
SET LIBRARY TO [PATH TO LIBRARY] ST_DENIS.FLL ADDITIVE
To remove the library from memory, use:
RELEASE LIBRAY ST_DENIS
or, if the library is not in the search path,
RELEASE LIBRARY [PATH TO LIBRARY] ST_DENIS
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform