Search results

  1. 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
  2. bob fitz

    Solved One Or All Data If Null

    Ebs solution works. See attached file
  3. bob fitz

    Solved Ms access DB closeing automatically

    I don't know what you can do. Have you tried to attach a video file/
  4. 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.
  5. bob fitz

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

    From post #12 Can you be more specific
  6. 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.
  7. bob fitz

    Howdy all

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

    Date on query

    Try Is Not Null
  9. bob fitz

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

    Can't you share it with us? :(
  10. 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?
  11. bob fitz

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

    Good. Always glad to help if I can ;)
  12. 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]))
  13. 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.
  14. bob fitz

    Hello/ Complete novice here/

    Welcome to the forum :). Yes, the curve is steep but there are many knowledgeable and helpful members.
  15. bob fitz

    Form Open in Maximize

    Are using Tabbed Documents rather than Overlapping Windows?
  16. bob fitz

    Form Open in Maximize

    Not sure why that would happen. Have you tried Docmd.Restore it in forms open event
  17. bob fitz

    My introduction

    Welcome to the forum :)
  18. bob fitz

    Finding missing No

    Then why would you need to know which are missing. They should have no meaning to a user.
  19. bob fitz

    Finding missing No

    Are the ID's of "Auto-Number" type
  20. bob fitz

    Listview will becomes empty when i disable it

    You may find some of the posts in the following link to be of some help/interest: https://www.accessforums.net/showthread.php?t=82044
Back
Top Bottom