efiftythree
IS-IT--Management
I am working on a database to record information about phone extensions on our phone switch. I have a table with three columns:
ID is the record ID, EXT is the extension number, and INUSE is either a 1 for used or 0 for unused.
I built a query that populates a combo box on a form with only the unused extensions. I want to be able to select an extension from that list and hit a button which will in turn update the INUSE field to a 1 for that extension in the table above.
I’ve searched and I can’t seem to find a starting point. Can someone point me in the right direction please Thanks!!!
Code:
--------------------
| ID | EXT | INUSE |
|----|-----|-------|
| 1 | 243 | 1 |
| 2 | 192 | 0 |
--------------------
ID is the record ID, EXT is the extension number, and INUSE is either a 1 for used or 0 for unused.
I built a query that populates a combo box on a form with only the unused extensions. I want to be able to select an extension from that list and hit a button which will in turn update the INUSE field to a 1 for that extension in the table above.
I’ve searched and I can’t seem to find a starting point. Can someone point me in the right direction please Thanks!!!