The Mouse Wheel Scroll problem is pretty common. I've never felt the need
to disable that capability, but apparently many people do. These threads
from the Search Facility here should help:
http://www.access-programmers.co.uk/forums/search.php?searchid=435630
As for unbound forms, I agree with Pat, they should be avoided at all costs.
Access (and JET) do an amazing amount of our work for us, that's the primary
strength of Access; rapid development of database applications.
If you pursue apps with unbound forms, you will:
1) Become much more proficient writing VBA code, rewriting all of Access's
record display & update logic.
2) Become very aware of how/when data is updated. Hopefully you won't
lose any as you learn how to develop the forms.
3) Become very aware of database performance. Especially if your form's
data sources are based on ADO Recordsets. And especially if your app runs
over a network.
Overall, I'd stay with bound forms, and seriously investigate some of the
threads above. An unbound form seems like a tremendous amount of your
labor ... just for a stupid mouse wheel.
I have no idea of the type of constraint that it would take for me to opt for
an unbound form.
Just some thoughts,
Wayne