| AppletRunWindowsCalculator
|
Run
the Windows calculator ( if installed ) |
| ArrayBinarySearch |
Search for an item in an array using a binary search algorithm,
optionally case sensitive. Note - requires that data is loaded into
the array sorted either alphabetically or numerically. |
| FormatDate |
Formats a date specified in YYYYMMDD format to a user defined format.
|
| FormatTelephoneNumber
|
Attempts
to format a telephone number to an English standard, ie. (01234)
123456
|
| FormatTime
|
Formats
a time in HHMMSS format to the standard format as HH:MM.SS |
| MathsCalculateAgeFromDOB
|
Accurately
calculates an age from a specified date of birth. |
| MathsGenerateRandomPrimeNumber
|
Generates
a 'random' number between a specified lower and upper value. |
| MathsIsNumberPrime
|
Ascertains
whether a specified number is a prime number. |
| MathsMakeAWorkingDate
|
Makes
a specified day a weekday ( Monday to Friday ). |
| ProcessExecute32bitCommand
|
Executes
a 32bit application ( command ) and waits for completion. |
| ProcessFindClassName
|
Reports
the Windows class name given a valid Window module handle. |
| ProcessFindWindowLike
|
Reports
the Window handle of the first matching Window ie. Microsoft Word. |
| ProcessSleepForSeconds
|
Puts
Windows to sleep for 'n' seconds. |
| ProcessWaitForTermination
|
Waits
for a launched process to complete (terminate). |
| ProcessYieldToWindows
|
Allows
Windows to process pending operating system messages. |
| StringAddLeadingBackslash
|
Adds
a leading backslash to a string, useful for ensuring the consistent
formatting of file names. |
| StringCharacterToPhonetic
|
Converts
a a specified letter ( A-Z, 0 - 9 ) to the phonetic equivilent ie.
A - Alpha, B - Bravo, 0 - Zero, 1 - One et al |
| StringCountOccurences
|
Counts
the occurrences of a specified string in another string. |
| StringExtractItemsFromList
|
Extract
items from a list. |
| StringFixSingleQuoteForSQL
|
Fix
the problem of embedded single apostrophies in strings that cause
SQL commands to fail. |
| StringSoundex
|
Generate
a soundex representation for a specified string. |
| StringStripTrailingBackslash
|
Strip
a backslash character from a specified string, useful for ensuring
the consistent formatting of file names. |
| StringXORShift
|
Applies
a logical XOR 7 shift of a specified string. Very useful in performing
a simple encryption of a string. |