Search results

  1. K

    Issue with many to many, multi select listbox and some vba

    Ok. I solved this one myself :) 1. Dont ever use Form.Recordset (unless you really know what you are doing)! Access gets confused. Either use Form.RecordsetClone or since I just needed the ID from tbl_Person I added the ID-field to the form and got the value from that field. 2. I put the...
  2. K

    Issue with many to many, multi select listbox and some vba

    Hello. I've recently started using Access for my job and have encountered an issue when registering new records in a form. ---- Background ---- To describe my problem I'll use an example of a many to many relationship between Person and Activity: tbl_Person, tbl_Activity, tbl_PersonHasActivity...
Back
Top Bottom