How do I resize a picturebox using the mouse wheel?
AKA zooming in and out using the wheel.
I can adjust the image to fit the screen if it is taller or wider than its bounding area.
PB1.height = pb1.height * 0.1 for mouse wheel back
PB1.height = pb1.height * 1.1 for mouse wheel forward
I can't seem to capture the wheel event to do this.
Thanks
AKA zooming in and out using the wheel.
I can adjust the image to fit the screen if it is taller or wider than its bounding area.
PB1.height = pb1.height * 0.1 for mouse wheel back
PB1.height = pb1.height * 1.1 for mouse wheel forward
I can't seem to capture the wheel event to do this.
Thanks