Search results

  1. SpentGeezer

    Progress Indicator wanted

    Pretty much all processes are divisible. You just have to work out how many divisions (progress bar movements) you want and tell the P bar to progress at different stages through the code. If it is very time consuming due to processing a massive table then just use a counter or similar to...
  2. SpentGeezer

    Progress Indicator wanted

    Try this JohnPapa, I think you'll find it rather tastey...
  3. SpentGeezer

    Image not showing up after adding on form

    it does work. Add photo simply adds or changes the filepath to the photo through a dialog box to "memProperyPhotoLink" Here is a sample that adds the photo to the form...
  4. SpentGeezer

    create pivot chart using vba

    I can assist. What is your scenario?
  5. SpentGeezer

    Show only current record in report from form/subform

    Sorry dude, I only have Access 2003. Can you convert (or can someone with 2007 solve this small problem?)..
  6. SpentGeezer

    Show only current record in report from form/subform

    OP, you are going to have to post your DB....it is hard to follow you now. Make a copy and empty out all the tables. Then post it.
  7. SpentGeezer

    Show only current record in report from form/subform

    I am discombobulated
  8. SpentGeezer

    Show only current record in report from form/subform

    Can you list the fields that are in the report source table or query please?
  9. SpentGeezer

    Show only current record in report from form/subform

    The field that you are filtering has to be in the report source table or query. Is it?
  10. SpentGeezer

    Show only current record in report from form/subform

    In the filter it has to be whatever the field is that is bound to the Visit ID textbox: Replace this part: theFIlter = "VisitID = " & theRecord with this (replacing <fielname> with your field name: theFIlter = "<fieldname> = " & theRecord
  11. SpentGeezer

    Output File to a different path

    Hey, use a dialog box to get the folder. See attached example which calls a function for the get folder dialog
  12. SpentGeezer

    Show only current record in report from form/subform

    You can filter your receipt report by the current visit ID. See the attached DB for filtering a report demo.
  13. SpentGeezer

    report w/multiple criteria for one field?

    This one has both exact matches and partial matches, still to message box (not report sorry..)
  14. SpentGeezer

    Help with setting user permissions/restrictions on viewing records

    if you are recording their username in the record, and they access the records through a form you could have this on form open: strUser = VBA.Environ("username") me.filter = "usernameField = " & strUser me.filteron = true
  15. SpentGeezer

    Check box control what is printed on report

    Try this it has no rental option
  16. SpentGeezer

    Check box control what is printed on report

    Here is a sample:
  17. SpentGeezer

    report w/multiple criteria for one field?

    Did you try importing your tables from the old database into my one and see if it works? I used the exact same table structure, so it should work. Let me know how that goes.
  18. SpentGeezer

    Making a cash balance

    I also recall having to convert to US format and put # on either side of the date in an SQL statement....
  19. SpentGeezer

    Making a cash balance

    Greetings, Have you checked that tblDocket.D_Date and [Forms]![frmCash]![TxtD_date] are in the same format? One of them might be date/time or US format. Put this into the event to check them: msgbox tblDocket.D_Date msgbox [Forms]![frmCash]![TxtD_date]
  20. SpentGeezer

    report w/multiple criteria for one field?

    This puts em into a message box. Alter the code to put in a report.
Back
Top Bottom