Hi everyone,
I'm trying to build an app that utilises a series of text inputs and I've hit a bit of an issue. The text inputs should be fillable by 2 different methods; manual entry and barcode scanning. The barcode scanning was simple enough - I set the default value to a local variable and then used UpdateContext with the barcode scanner value but the issue is that if someone attempts a manual entry then the field no longer uses the local variable.
So my question is this: Is there a way to set the text value of a text input using a button (or barcode scanner in this case) WITHOUT using a local variable as the default value?
I tried this but nothing happened:
TextInput1.Text = BarcodeScanner1.Value
I'm assuming TextInput1.Text is a read-only field?
Thanks