this is the code where the NumLock is being toggled:<br><br>Private Sub Form_Resize()<br>SendKeys "{F9}", False<br>End Sub<br><br>Here is the code in the other place where the Sendkeys is being used Here the NumLock Blinks but stays on:<br><br>Private Sub Form_Current()<br><br>If InActive = True Then<br> UpdateNum.Visible = True<br>Else<br> UpdateNum.Visible = False<br>End If<br><br>Combo8 = PartNum<br>SendKeys "{F9}", False<br><br>End Sub<br><br>If I comment out all the SendKeys statements. The problem is solved. Unfortunately this does not get my forms refreshed.<br><br>