Back

UpperCase:

UpperCase will return a string in uppercase (Capitals), like A, B, C, D and not a, b, c, d.

Example:
This example came from Greg Liefs "ADDING INCREMENTAL SEARCH TO A LISTBOX".

FSearchText := FSearchText + UpperCase(Key) ;


Back