A family of Microsoft relational database management systems designed for ease of use.
You'd have to write code in the On Mouse Wheel event of the form. The code below uses SendKeys, which is reputed to be flaky (but it generally works OK for me):
Private Sub Form_MouseWheel(ByVal Page As Boolean, ByVal Count As Long)
Dim i As Long
Dim s As String
If Me.ActiveControl.Name = "Notes" Then ' replace with name of text box
If Count > 0 Then
For i = 1 To Count
s = s & "{DOWN}"
Next i
Else
For i = 1 To -Count
s = s & "{UP}"
Next i
End If
SendKeys s
End If
End Sub