<< Click to Display Table of Contents >> Navigation: Apollo API Listing > sx_IndexKey |
Declare Function sx_IndexKey Lib "Apollo9.dll" () As String
LONG FAR PASCAL sx_IndexKey (VOID);
Extracts the contents of the xBase key construction expression used by the current index as a string.
The xBase key expression is returned as a string.
You may extract the current value of the key by passing the result of sx_IndexKey as a parameter to sx_EvalString.
Dim KeyStr As String
KeyStr = sx_EvalString(sx_IndexKey())
BYTE caKeyValue[256];
lstrcpy((LPSTR) caKeyValue, (LPSTR) sx_EvalString(sx_IndexKey()));