Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Displays the field's Help text from the LANSA Repository when a field gets focus and the user presses F1: 
Private Sub txtDesc

     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