You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

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

  • No labels