This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
From inside a SELECT structure, returns the value of the SelectExpression clause.
Syntax
s = SelectExpression
Returns
String
Parameters
Remarks
Restrictions
See also
Examples
Dim MyString As String = "one"
' |----------------------| The value of this expression
' |<--SelectExpression-->| (in a form of string) will be
' | | returned by SelectExpression
Select Case UCASE$(MyString) & "..."
Case "TWO"
MSGBOX 0, "SelectExpression:TWO=" & SelectExpression
Case "ONE..."
MSGBOX 0, "SelectExpression:ONE=" & SelectExpression
Case Else
MSGBOX 0, "SelectExpression:ELSE=" & SelectExpression
End Select