Hello
Does anyone know if it's at all possible to program the mousewheel to run a query in a textbox
ie - i would like to update the quantity of stock +/- 1 by scrolling up or down within the textbox
i'm thinking along the lines of
but how is it possible to distiguish between scrolling up or down?
I haven't been able to find anything useful on google - most of the info is on how to disable the mousewheel.
Does anyone know if it's at all possible to program the mousewheel to run a query in a textbox
ie - i would like to update the quantity of stock +/- 1 by scrolling up or down within the textbox
i'm thinking along the lines of
Code:
Private Sub StockEnv_MouseWheel()
DoCmd.OpenQuery "plusone", acViewNormal, acEdit
I haven't been able to find anything useful on google - most of the info is on how to disable the mousewheel.