PDA

View Full Version : Sleeper: A form to Scan Barcodes & Display already scanned codes in a subform



SentientOp
05-11-2023, 06:10 AM
Hello all,

I have a form set up with a continuous sub form.

Basically, the main form should accept a number (from a scanned barcode) and the scanner has an enter after scan function so it would enter the information to a new table record and I could scan again. Now that I've added a sub form to display already scanned codes. it will instead tab to the sub form. The sub form is set to not be editable, but I would like a way so that nothing else is clickable/tab-able on this form, as I would also like to add buttons in the future.

Question: How can I make all objected except for the main form entree box intractable except for mouse clicks.

Thank you.30810

June7
05-11-2023, 09:00 AM
Maybe set each control as enabled/disabled individually? Also set TabStop to No.

Logit
05-13-2023, 07:32 AM
Posting your existing workbook is the best means of receiving assistance. Pics are nice but don't really serve any diagnostic purpose. Volunteers are not inclined to recreate your workbook from scratch to assist you.

You can click on the GO ADVANCED button in the lower right corner when replying. There you will find a means of attaching your workbook.

Thanks.

Quinlan
05-22-2023, 02:09 AM
Maybe set each control as enabled/disabled individually? Also set TabStop to No.

It's work

Quinlan
05-22-2023, 06:05 PM
It works

davidjohnx
06-08-2023, 07:03 PM
By setting the "Enabled" property to "No" for the selected objects, users will not be able to click or incredibox (https://incrediboxgame.co/)interact with them using the mouse or the tab key. However, they will still be able to interact with the main form entry box to scan and enter information.

mamba34a
12-13-2023, 03:36 AM
Basically, the main form should accept a number (from a scanned barcode) and the scanner has an enter after scan function so it would enter the information to a new table record and I could scan again. Now that I've added a sub form to display already scanned codes. it will instead tab to the sub form. The sub form is set to not be editable, but I would like a way so that nothing else is clickable/tab-able on this form, as I would also like to add buttons in the future.

June7
12-13-2023, 12:47 PM
Set the subform container TabStop property to No. You can set Locked to Yes as well.

mamba34a
12-14-2023, 04:08 AM
Basically, the main form should accept a number (from a scanned barcode) and the scanner has an enter after scan function so it would enter the information to a new table record and I could scan again. Now that I've added a sub form to display already scanned codes. it will instead tab to the sub form. The sub form is set to not be editable, but I would like a way so that nothing else is clickable/tab-able on this form, as I would also like to add buttons in the future.