Hi All,
I have created a database that works great for Microsoft Access 2007. When I package it as a Runtime application I am running into problems. Most of my problems were solved by finding the missing references, but now my program shuts down due to a runtime error:
Execution of this...
What I'm actually trying to do is look the data up in the one table(for my form) and then add all the new records to a different table, so I can run reports off the data that was selected.
Thanks
Hi, I am somewhat new to Access 2007.
I have a form that populates most of the data from a table and some information is typed in. This is what I have:
Vehicle # (select- controls the next 3 combo boxes)
Vin # (auto populates)
Address (auto populates)
State, City, Zip (auto populates)...
I am making a multiple choice survey and for some questions, there is only one option, such as N/A. If there is one option I would like it to Auto populate in the combo box.
My Row source for a combo box is: SELECT DISTINCT Table1.Year FROM Table1 WHERE (((Table1.Make)=Forms![Form1]!Make))
I...