• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Access 2000 Question

FooKilla

Member
I have a Access database that lists inventory. I want to make it so that if a item needs to be destroyed a person can select "YES/NO" from a drop down box. If "YES" is selected a button will be unlocked that will (when clicked) display a report form with information on the specifc item for a hard copy. How can this be done?
 
You will need to write some code in either VBA (stored ith the DB) or a seperate app to handle the form display and report generation.
 
In the click event handler for the checkbox, set commandbutton.Enabled = checbox.Checked. I think that's right.
 
Back
Top