I have the following code in the OnCurrent of the subform so that it will show me the text in the strItemDescription field when I mouse over. However, it is only showing me the text in the first record on the subform, regardless of which record I have the mouse over. Please tell me what I need to change to make it change for the current record.
Private Sub Form_Current()
If (IsNull([strItemDescription])) Then
Me.strItemDescription.ControlTipText = "Enter Item Description"
Else
Me.strItemDescription.ControlTipText = Me.strItemDescription.Value
End If
End Sub
Thank you
Dawn
Private Sub Form_Current()
If (IsNull([strItemDescription])) Then
Me.strItemDescription.ControlTipText = "Enter Item Description"
Else
Me.strItemDescription.ControlTipText = Me.strItemDescription.Value
End If
End Sub
Thank you
Dawn