Recent content by bigalpha

  1. B

    Trying to show a list of items that aren't already in a table

    Yeah, that did the trick!
  2. B

    Trying to show a list of items that aren't already in a table

    Thanks so much - I had part of that down but wouldn't have gotten the rest of the more intricate parts of that code. Your time is much appreciated!
  3. B

    Trying to show a list of items that aren't already in a table

    Thanks, that's definitely something worth keeping for future use. I do like the idea of having the dual boxes for end user use because I think it's easier to manipulate the data. In my case, though, that won't work as easily since I'm recording new records in a junction table, right? I...
  4. B

    Trying to show a list of items that aren't already in a table

    I think I'm missing a step somewhere. I have my listbox rowsource set to show all inventory. I set up a query that shows the inventory assigned to each Show (this is filtered based on combo box selection.) In your notes in the code, you say to deselect the selected item in listbox; nothing...
  5. B

    Trying to show a list of items that aren't already in a table

    Sorry for the delayed reply. Yes, all my tables have their own unique ID's so looks like option 1 is the path forward. Yes the bound column of the combo box is the Shows ID. Not extremely familiar with this set up so I have some extra research to do. Thanks for your knowledge. If I can...
  6. B

    Trying to show a list of items that aren't already in a table

    I have a list box that allows multiple selections [Inventory]. I also have a combo box that has multiple selections [Shows]. Right now, user selects from list box and from a combo box and clicks a button. On button click, the items from the list box are associated with the PK from the combo...
  7. B

    Use button to record combo box PK's to table

    Thanks again for your help!
  8. B

    Use button to record combo box PK's to table

    The reason I used the description is because the entry is a text box; so the code would look at what you typed in it. Because this data is getting stored in the lookup table(s), I didn't think I'd need the ID's.
  9. B

    Use button to record combo box PK's to table

    Uhhhh, sorry. I was continuing my previous thought on adding data. Sorry, I should have specified. I created a separate form to do the data entry in because that's more intuitive for the end user, IMO. So this block of code is only for adding data to the tblCollection, tblDesignName and...
  10. B

    Use button to record combo box PK's to table

    I have 3 unbound text boxes that the data will get entered into. The code will execute on a button click. Ah, figured out part of this. While I was working with getting the code to work, I inadvertently mixed up references to the text boxes. I fixed that and now the code works as-is. Can...
  11. B

    Use button to record combo box PK's to table

    Crap. I updated it to be correct. What I want: 1. If there's text in the textbox and it does not match an existing record, then add the value from the textbox. 2. If there's no value in the text box, do nothing (add no values). [I haven't implemented this into the code] 3. If there is...
  12. B

    Use button to record combo box PK's to table

    Well, I'm back. I spent all day yesterday trying to get this to work with different methods to no avail. What I want: 1. If there's text in the textbox and it does not match an existing record, then add the value from the textbox. 2. If there's no value in the text box, do nothing (add no...
  13. B

    Use button to record combo box PK's to table

    Right, but I figure that having the entry a little more blatant and intuitive would be good in this case. edit: not that I know how to get it to enter a new line in the lookup table then add the corresponding PK to the inventory table.
  14. B

    Use button to record combo box PK's to table

    I definitely feel like it'd be easier for me to code a small entry form that opens up that allows a new inventory entry.
  15. B

    Use button to record combo box PK's to table

    Preferably yes, though I'm not adverse to having it open a 'new entry' form for this purpose.
Top Bottom