Can I Disable Mouse scroll while in Epicor 9?

I was actually thinking of superglue.... :-)

--- In vantage@yahoogroups.com, "gamcb_1" wrote:
>
> Put a piece of scotch tape over the scroll button...
>
> --- In vantage@yahoogroups.com, "jgiese1988" wrote:
> >
> > Yes it would be per each control you would have to do this unless you apply the same logic to the form object. I'm really doubting that there would be any good universal way of disabling this at the Epicor level across all forms in one swoop. At a windows level you can disable/reassign buttons for certain applications, using certain types of mice, that come with certain drivers lol.... but seems to me that would be pretty hard to maintain. Dole out mice without wheels?
> >
> > --- In vantage@yahoogroups.com, "redrhyno13" wrote:
> > >
> > > Users are trying to scroll a window and end up scrolling the drop down box without realizing and change data in a form in Epicor 9.
> > > Is there a way to disable the scroll wheel just for Epicor 9 but keep it active for other windows functions?
> > >
> > > Thanks,
> > >
> > > Chris Wineinger
> > > ERP Specialist
> > > Interior Systems Inc.
> > >
> >
>
Users are trying to scroll a window and end up scrolling the drop down box without realizing and change data in a form in Epicor 9.
Is there a way to disable the scroll wheel just for Epicor 9 but keep it active for other windows functions?

Thanks,

Chris Wineinger
ERP Specialist
Interior Systems Inc.
This should just "absorb" the event and stop it from working on that particular combo box.

void comboBox1_MouseWheel(object sender, MouseEventArgs e) {
((HandledMouseEventArgs)e).Handled = true;
}

--- In vantage@yahoogroups.com, "redrhyno13" wrote:
>
> Users are trying to scroll a window and end up scrolling the drop down box without realizing and change data in a form in Epicor 9.
> Is there a way to disable the scroll wheel just for Epicor 9 but keep it active for other windows functions?
>
> Thanks,
>
> Chris Wineinger
> ERP Specialist
> Interior Systems Inc.
>
This is per combobox?
I was hoping for a application wide solution but I can use this for now in problem areas.

Thanks,

Chris Wineinger
ERP Specialist
Interior Systems Inc.

--- In vantage@yahoogroups.com, "jgiese1988" wrote:
>
> This should just "absorb" the event and stop it from working on that particular combo box.
>
> void comboBox1_MouseWheel(object sender, MouseEventArgs e) {
> ((HandledMouseEventArgs)e).Handled = true;
> }
>
> --- In vantage@yahoogroups.com, "redrhyno13" wrote:
> >
> > Users are trying to scroll a window and end up scrolling the drop down box without realizing and change data in a form in Epicor 9.
> > Is there a way to disable the scroll wheel just for Epicor 9 but keep it active for other windows functions?
> >
> > Thanks,
> >
> > Chris Wineinger
> > ERP Specialist
> > Interior Systems Inc.
> >
>
Yes it would be per each control you would have to do this unless you apply the same logic to the form object. I'm really doubting that there would be any good universal way of disabling this at the Epicor level across all forms in one swoop. At a windows level you can disable/reassign buttons for certain applications, using certain types of mice, that come with certain drivers lol.... but seems to me that would be pretty hard to maintain. Dole out mice without wheels?

--- In vantage@yahoogroups.com, "redrhyno13" wrote:
>
> Users are trying to scroll a window and end up scrolling the drop down box without realizing and change data in a form in Epicor 9.
> Is there a way to disable the scroll wheel just for Epicor 9 but keep it active for other windows functions?
>
> Thanks,
>
> Chris Wineinger
> ERP Specialist
> Interior Systems Inc.
>
Put a piece of scotch tape over the scroll button...

--- In vantage@yahoogroups.com, "jgiese1988" wrote:
>
> Yes it would be per each control you would have to do this unless you apply the same logic to the form object. I'm really doubting that there would be any good universal way of disabling this at the Epicor level across all forms in one swoop. At a windows level you can disable/reassign buttons for certain applications, using certain types of mice, that come with certain drivers lol.... but seems to me that would be pretty hard to maintain. Dole out mice without wheels?
>
> --- In vantage@yahoogroups.com, "redrhyno13" wrote:
> >
> > Users are trying to scroll a window and end up scrolling the drop down box without realizing and change data in a form in Epicor 9.
> > Is there a way to disable the scroll wheel just for Epicor 9 but keep it active for other windows functions?
> >
> > Thanks,
> >
> > Chris Wineinger
> > ERP Specialist
> > Interior Systems Inc.
> >
>