Search results

  1. b4rt07

    Going loopy

    Good point, act in haste, look a fool for a enternity. Cheers.
  2. b4rt07

    Going loopy

    Going loopy-ignore, have answer Hi, Can someone take a quick look and tell me where I have gone wrong, on compile message I am getting is 'Loop without Do'. Dim qdef As QueryDef Dim db As Database Set db = CurrentDb Dim rsProcObjects As Recordset Set rsProcObjects = db.OpenRecordset("select *...
  3. b4rt07

    addition of data in two tables

    What are you trying to achieve? At the least, you need something to join them on?
  4. b4rt07

    Copying a Command Button

    Hi, what does the code look like?
  5. b4rt07

    Newbe A2000 - generating filename on form

    If it's just creating the path that shouldn't be too bad. You can either use a form and put some code in that or use an update query. Either way you will need to create an expression that build your path. Should be something like:- "C:/turnings/cards/" & [Product Name] & ".jpg" Cheers.
  6. b4rt07

    dlookup.visible

    Like it, thanks.
  7. b4rt07

    dlookup.visible

    Cheers, is that saying, my field's value = result of dlookup. My resolved objective would be e.g. item (derived from dlookup) on form's visible property, amend to true Is that what this would deliver? Cheers.
  8. b4rt07

    Newbe A2000 - generating filename on form

    Hi, Northwind is the sample database that is delivered with Access. This might help with the path http://support.microsoft.com/kb/824265 Re driving your images, from memory Northwind does have that does this so should help you. Cheers.
  9. b4rt07

    dlookup.visible

    Hi all, Trying to use a dlookup to drive the visible property of the tabs in my form. I'm up to:- DLookup("[Menu_Name]", "tMenus", "[Menu_id]=" & [Forms]![Menu]![ffMenuChoice]).Visible = True Hope what I'm trying to achieve makes sense, if anyone can help that would be great.:confused:
Back
Top Bottom