joshua2008
Technical User
Okay I am trying to make one form for data entry to update the records, this is what i got:
tblComic
Comic_ID (PK)
Title_ID (FK)
Publisher_ID (FK)
Artist_ID (FK)
Writer_ID (FK)
Edition
Purchase
Market
Description
Picture
tblTitle
Title_ID (PK)
titleName
tblArtist
Artist_ID (PK)
artistName
tblPublisher
Publisher_ID (PK)
publisherName
tblWriter
Writer_ID (PK)
writerName
What I have tried to make is a form based off my tblComic, but I want comboboxes for titleName and for artistName and for publisherName and for writerName where the user can select the data from the dropdown list already populated in the comboboxes then add the new information for all the other feilds like edition, purchaseprice, market value and when they push add it updates the tblComic by adding the new information in the records. To clarify tblArtist, tblWriter, tblPublisher, already are populated with data, so the user should be able to select these and add the new data such as edition and such then have it update the tblCOmic.
What it is doing thus far is just updating the feilds in tblComic that are NOT FK, just the regualr feilds so it reads like this:
comic_ID|Title_ID|Artist_ID|Writer_ID|Publisher_ID|Eition|
127 |(BLANK) |(BLANK) |(BLANK) |(BLANK) | 128 |
PurchasePrice|Market|Description|Picture|
12.50 |16.00 | BlhaBlah | attch.|
so basically it will update everyhting exscept fro the Forighn Key Feilds which I am trying to call from the combo boxes. I know this is confusing but I cant find anything any where about this. Thanks for the Help
tblComic
Comic_ID (PK)
Title_ID (FK)
Publisher_ID (FK)
Artist_ID (FK)
Writer_ID (FK)
Edition
Purchase
Market
Description
Picture
tblTitle
Title_ID (PK)
titleName
tblArtist
Artist_ID (PK)
artistName
tblPublisher
Publisher_ID (PK)
publisherName
tblWriter
Writer_ID (PK)
writerName
What I have tried to make is a form based off my tblComic, but I want comboboxes for titleName and for artistName and for publisherName and for writerName where the user can select the data from the dropdown list already populated in the comboboxes then add the new information for all the other feilds like edition, purchaseprice, market value and when they push add it updates the tblComic by adding the new information in the records. To clarify tblArtist, tblWriter, tblPublisher, already are populated with data, so the user should be able to select these and add the new data such as edition and such then have it update the tblCOmic.
What it is doing thus far is just updating the feilds in tblComic that are NOT FK, just the regualr feilds so it reads like this:
comic_ID|Title_ID|Artist_ID|Writer_ID|Publisher_ID|Eition|
127 |(BLANK) |(BLANK) |(BLANK) |(BLANK) | 128 |
PurchasePrice|Market|Description|Picture|
12.50 |16.00 | BlhaBlah | attch.|
so basically it will update everyhting exscept fro the Forighn Key Feilds which I am trying to call from the combo boxes. I know this is confusing but I cant find anything any where about this. Thanks for the Help