First off, I am an inexperienced Access user, but I have quite a bit of technical expertise, so excuse me if my question seems too newbie-ish.
Please do not answer my question if you don't understand that Web Databases in Access 2010 are different than non-web ones, because they are. Some of the restrictions are:
- Tables ONLY have a Datasheet view
- Forms have no Design view (they do still have a Layout view)
- Queries have no SQL view (they do have a Design view)
- Certain wizards are not avaialble at all (like Combo box wizards)
- For relationships between tables, you have to use lookup fields
- VB cannot be used
I’m making a simple ordering system for people to order items. I’ve set up these tables:
- Categories
- Items
Right now, my Items table has a Category field that is a lookup to the Category text filed in my Categories table.
One of the things I’m trying to do initially is make a cascading combo box that works in an order form. I want the user to be able to select a Category which would then limit the Items to those associated with the different Categories (boxes, paper products, etc). So, essentially, I think I need to make cascading combo boxes. But, remember, this is a web database (see above differences).
But, being such an Access newbie, I can't even figure out how to associate a combo box I place on a Blank web form with one of my tables. When I place a new combo box on the blank form, no Combo Box Wizard appears. That just doesn't happen with a web database. I need to specifiy all the details of the combo box in layout view. When I look at the form in layout view, the property sheet for the newly added combo box's Control Source and Row Source are blank. Is the only way to associate that combo box with the table and field in that table to write a SQL statement and past it into the Row Source?
I can do that for the Category field. To make that combo box cascade to the correct Items, do I then need to make a query and put the correct SQL in its design view and then associate that query with the Item's combo box in the form?
Please don't send me to Access combp box tutorials that don't deal with web databses, because I have viewed dozens of those and they don't help because I don't know enough about Access to fill in the missing gaps about what is different about cascading combo boxes in web databases.
If I can get some help on creating such a simple form for two tables and however many queries are needed, I will write up an extremely clear tutorial myself. I promise! ;-)