Hi, I'm working on a barcode scanner application to keep track of parcels. The tracking info is recorded on a Sharepoint site with two custom columns: Barcode (255 char text) and Courier (10 Choices).
My application has a Form with 3 Card fields. Two of which contains the custom field columns Barcode (text input), Courier (dropdown). The third Card field is a button that calls SubmitForm() to create a new entry on the sharepoint list and reset the form by NewForm(). The issue is that the form takes too long to reset, and I'm unable to scan multiple barcodes in quick succession. I end up appending the new barcode to the previous entry because the barcode text field does not clear quickly enough. Sometimes it would say that the field is blank.
I'm wondering if there was a better way to create a NewForm after a Submit?
Any help would be appreciated.
Button control - OnSelect:
SubmitForm(Form1);
Form control - OnSuccess:
NewForm(Form1);SetFocus(BarcodeTxtField);Set(currentCounter, currentCounter+1);
DefaultMode:
FormMode.New
BarcodeTxtField - OnChange:
Select(Button1);