I’m trying to add a couple of Fields to the Job manager form. I looks like it is a custom Epicor module. I not sure the best way to get the PartNum to use as a Parameter in a BAQ search. I have the Text Boxes and the BAQ to get the Min and Max values I need but the Control doesn’t have the usual Text or Value properties i’m use to.
I dont see any reason this shouldnt behave as a typical customization - particularly with custom controls. The only thing that stands out to me is why you would use a text box to store what I assume is numerical data (min-max)
Good point I’ll have to change them.
When using the numeric control I believe there is a value property but I think you also need to cast it to correct type if I recall correctly.
Perhaps:
decimal myNum = (decimal)myNumControl.Value
