Quantity Adjustment Form

On this form, when the Adjust button is pressed, is there a way to clear the form and have the cursor go to the Part num field for a new part number to be added?

Yes.

image

Sorry I couldn’t resist.

Use the event wizard, afterAdapter event, pick the right adapter, in the code

EpiTextBox part = (EpiTextBox)csm.GetNativeControlReference("the guid of the control here");
part.Focus();
1 Like