I am building an entertainment db to manage my books, games, movies, music. I am creating a form to enter items. If I don't currently own the item I have a button which calls a macro to add the item to my wishlist. This is a single item append and I don't get the coding instruction in my book or what I've found on the web. I'm supposed to add values. I want to insert values from the current form. My code is:
INSERT INTO tbl_Wishlist (MediaID, UniqueID, etc)
VALUES (which changed to SELECT in SQLView) [frm_AddItem].[MediaID] AS Expr 1, [frm_AddItem].[UniqueID] AS Expr 2, etc.
When I trigger the macro I get a message box to enter the value of each field. I want this thing to automatically populate the fields in tbl_Wishlist from the values I enter into frm_AddItem for each item I want to add to my wishlist. Help!!!!
INSERT INTO tbl_Wishlist (MediaID, UniqueID, etc)
VALUES (which changed to SELECT in SQLView) [frm_AddItem].[MediaID] AS Expr 1, [frm_AddItem].[UniqueID] AS Expr 2, etc.
When I trigger the macro I get a message box to enter the value of each field. I want this thing to automatically populate the fields in tbl_Wishlist from the values I enter into frm_AddItem for each item I want to add to my wishlist. Help!!!!