[ |../../index.htm#lansa/vgudb9_0085.htm]
You are here:
5.3.7 Retrieving Help Text
Displays the field's Help text from the LANSA Repository when a field gets focus and the user presses F1:
Private Sub txtDesc_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = vbKeyF1 Then
iRet = LceGetFieldHelpText(iSession, "SKILDESC", "U", Chr(13) _
& Chr(10), "", 0)
End If
End Sub
[ |../../index.htm#lansa/vgudb9_0085.htm]