I am trying to build a form that will serve as a timesheet and equipment tracker for end users.
Since the end user will have zero experience with Access, I am trying to make the form as intuitive and streamlined as possible.
The end user will be a foreman/jobsite supervisor that will need to input his crew members hours and equipment usage on a daily basis.
Using the CreateControl(acComboBox) command, I figured out how to insert a combo box at a desired location on my form, but is there a way to insert another combo box below the existing one using the same command button?
Im envisioning a form that has an "Add Employee" button that can be clicked and will create a combobox (fields to enter start/stop time will also be generated), and when clicked again, will add another combobox below the initial one, and so on for each employee.
Is it possible to have a CommandButton key off of the objects it creates to make a dynamic form?
I should probably throw out the caveat that I am a novice when it comes to vba...I've been using google to try and teach myself what I can, but I've run into a wall on this one.