Search results

  1. W

    problem with images in report

    Hey, I have some images that are stored as file paths in my database (different for each record). I want to let them appear on my report, and this works (with an image control and some vb code), but with some problems. 1) The image looks terrible, I think this is some kind of conversion to...
  2. W

    store images in text field, but use file picker

    Hey, I want to store images in a text field and show them with vba on reports and on the forms (image control). This all works, but I need to type the path to the images. Is there a way to use a file picker for this, but still store it in a text field? Thanks, Seba
  3. W

    How to make a dropdown list with (sub) categories

    Well, i searched a lot and this is what I currently have: I have a combobox named 'categorie' and a table categorie, with fields: catid, parentid, naam And this piece of code: Option Compare Database Sub AddChildren(catid As Integer, rst As DAO.Recordset, level As Integer) Dim StrText As...
  4. W

    How to make a dropdown list with (sub) categories

    Hey, I'm quite new to access, so this might be a stupid question, or just impossible. But here I go: I have a table with categories that looks like: -catid -parentcatid -name Parentcatid is also a catid and the current category is a subcategory of the parent category. That way i can have...
Back
Top Bottom