Checkbox Problem

mfaisal.ce

Member
Local time
Tomorrow, 01:57
Joined
Dec 21, 2020
Messages
76
Dear,

I have a form with Checkbox control (unbound) and when i select a record by clicking on Checkbox, all checkbox are selected but i need to check only 1 record....

1613551035349.png
1613551054044.png
 
You cannot use unbound checkbox for this. (Hence it checks all)
Either, add a field MARK, or CHECK. Then you can choose them.
Or
Make a tPicked table,for users to select items from a listbox ,which add item to this pick table (via append qry)
And use that table joined to your main data table.
 
you can fake it.
 

Attachments

You cannot use unbound checkbox for this. (Hence it checks all)
Either, add a field MARK, or CHECK. Then you can choose them.
Or
Make a tPicked table,for users to select items from a listbox ,which add item to this pick table (via append qry)
And use that table joined to your main data table.
My concern is only, i want to do something when a record is selected... How i can do that?
 
No - because there is only one control. It gets repeated for each row.
That's why you have to either add a field or fake it.
 
Why oh dear?
Neither solution is difficult to do.
 

Users who are viewing this thread

Back
Top Bottom