Search results

  1. spikepl

    subform column selection

    You got all the code - look yourself
  2. spikepl

    subform column selection

    no you cannot, But for this type of selectrion oe mechanism is to have 2 listboxes: one showing what is available and one showing what is selected. Each time you click in the available-listbox, the item is removed from there and added to the "selected listbox", and vice versa. Google access...
  3. spikepl

    subform column selection

    Datasheet view makes it all quite simple:
  4. spikepl

    Table Currently In Use ?

    Using subforms just to select records is massive overkill and it also makes Access complain about mutiple access paths to the same table, as you've experienced. Use listboxes.
  5. spikepl

    subform column selection

    If you are using datasheet view, you can right-click on a column header and select Hide Fields or Unhide Fields.
  6. spikepl

    When to eat your cake - heard of intermittent fasting?

    Idiocy requires the occasional kick in the teeth. Otherwise the idiots occupy space and roam entirely scott-free.
  7. spikepl

    Preventing duplicates on form entry

    " Having trouble" is BS. Say what you want and show what you did, in code. And where.
  8. spikepl

    When to eat your cake - heard of intermittent fasting?

    You really are just a contrarian twat
  9. spikepl

    when field empty dont show in email subject

    oMail.Subject = "Missing documents for the client: " & Me.client_name & (", ID code: " + Me.ID_code)
  10. spikepl

    Split record..

    So you are not sure? Does it or does it not then? what the heck does this mean? Honestly, you can do much better. Read my signature. When asking for help be specific, and do not assume that we read minds. You have a problem, obviously. To define it so others can understand it you need to...
  11. spikepl

    Requery Subform from another form.

    Not stories but code: show how you requery
  12. spikepl

    Emailing Based upon Query Values

    Besides, use Now() to get the time, - insert debug.print now() here and there, and see where the largest time difference is.
  13. spikepl

    Emailing Based upon Query Values

    You still haven't shown everything: what is qryEmailRecipients
  14. spikepl

    When to eat your cake - heard of intermittent fasting?

    Keeping with the spirit of the site (something sound) and this forum (something not pertaining to Access), lets take Mens Sana in Corpore Sano to a new level, especially the last bit. I've discovered intermittent fasting. Have been following it in the 16/8 version (fast 16 hours, feed 8 hours)...
  15. spikepl

    Why the query is not reading the value entered on runtime?

    You should work on you googling skills. Googling is often as worthwhile as coding. This error is one of the most common with plenty of cases and advice out there. Use AWF for stuff you cannot google yourself. You search for Access error XXXX and see what comes up. Do that next time. AN example...
  16. spikepl

    How can I get Cumulative results down a calculated field “column” in Access?

    A textbox in a report has a property to set it to running sum
  17. spikepl

    Append Query with no Unique key

    You have not added any new information, so I point at #6 again.
  18. spikepl

    Append Query with no Unique key

    Errr so what? Did you read #6? Each shipment line does not belong to multiple order lines. It's like parent and children - one parent many children. You don't have a many-to-many for that.
  19. spikepl

    Emailing Based upon Query Values

    No its normally not slow. You have not shown the entire code so not possible to say what brakes there might have been built. Show all related code and queries, not just snippets.
  20. spikepl

    Append Query with no Unique key

    Junction table? What for? One shipment line cannot belong to multiple orders, can it? If not then logging each order line with all related shipment lines is enough.
Back
Top Bottom