Search results

  1. bob fitz

    Solved Access Shortcut (right-click) Tool by Dale Fye

    Can anybody please give me a link to where I can download the Access Shortcut (right-click) Tool by Dale Fye
  2. bob fitz

    Group tables

    EDITED How do you arrive at the values you have in the "From" and "To" columns of the second diagram
  3. bob fitz

    Call a button's action from VBA

    Instead of copying the code, what happens if you Call the buttons Click event.
  4. bob fitz

    Solved Parameter Query

    Try: <CInt([How many months?])
  5. bob fitz

    Solved Parameter Query

    can you post a copy of the db with a few fictitious records to illustrate the problem
  6. bob fitz

    Solved Splitting DB

    can you post a copy of the db
  7. bob fitz

    Solved Splitting DB

    you get that when you try to create the accde file. Open any code module, click Debug and try to compile the code
  8. bob fitz

    Solved Splitting DB

    My guess would be that your code won't compile. Try to compile it and see if it shows some faults
  9. bob fitz

    Solved One Or All Data If Null

    Ebs solution works. See attached file
  10. bob fitz

    Solved Ms access DB closeing automatically

    I don't know what you can do. Have you tried to attach a video file/
  11. bob fitz

    Solved SetFocus Issue

    Have you tried creating a new db and importing the relevant form, query and table. Delete all records in the new db and then create a couple of fictitious records. Compact, zip and post the file.
  12. bob fitz

    Solved How to set up unique customer codes based on customer types

    From post #12 Can you be more specific
  13. bob fitz

    Conditional Formatting from a Table

    I would be surprised if you could apply conditional formatting to a field at the table level, after all, tables are for storing data, not for viewing.
  14. bob fitz

    Howdy all

    Hi Rocky. Welcome to the forum :)
  15. bob fitz

    Date on query

    Try Is Not Null
  16. bob fitz

    Solved Function to calculate your start and end dates for the current day

    Can't you share it with us? :(
  17. bob fitz

    Solved Function to calculate your start and end dates for the current day

    In plain words, can you explain what criteria you want to apply?
  18. bob fitz

    Solved Function to calculate your start and end dates for the current day

    Good. Always glad to help if I can ;)
  19. bob fitz

    Solved Function to calculate your start and end dates for the current day

    In that case, I would use the following expressions as calculated fields in the query: startOfDay: DateValue(Now()) endOfDay: DateAdd("s",-1,DateAdd("d",1,[startOfDay]))
  20. bob fitz

    Solved Function to calculate your start and end dates for the current day

    Where do you want to use it? In a query, you could use each line as an expression to create a calculated field for each value. On a form, you could use: = GetCurrentDayDates()(0) and = GetCurrentDayDates()(1) as the Control Source properties of two unbound textboxes.
Back
Top Bottom