Numeric Editor Spin Buttons

I’ve been looking around but I have not been able to see. I am working on a customisation to print labels from the SO form.
Can anyone tell me how I can get increment/decriment buttons on an numeric editor field? Like the Time Editor Field.
Like image

Thanks

Not saying that this is an endorsed method for entering data, but there are multiple articles on how to do this with forms… here is one article:

1 Like

Thanks Tim,
Much appreciated.

I would stay within the Epicor framework and add a Numeric Editor control with this code snippet during the form init.

MyCustomButtonName.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.Always;

It will do everything for you.

3 Likes

Dan,
That worked a treat.
In my instance I was adding this to the Sales Order Entry. I did the following to get it to function.

Added
using Infragistics.Win;

and added

this.epiNumericEditor1.SpinButtonDisplayStyle = Infragistics.Win.ButtonDisplayStyle.Always; to the InitializeCustomCode() section.

End Result
image