Search results

  1. bob fitz

    Date on query

    Try Is Not Null
  2. bob fitz

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

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

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

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

    Hello/ Complete novice here/

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

    Form Open in Maximize

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

    Form Open in Maximize

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

    My introduction

    Welcome to the forum :)
  11. bob fitz

    Finding missing No

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

    Finding missing No

    Are the ID's of "Auto-Number" type
  13. 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
  14. bob fitz

    Listview will becomes empty when i disable it

    So sorry. I misread that. I am unable to help with listview.
  15. bob fitz

    Listview will becomes empty when i disable it

    Strange behavior is often a symptom of corruption. Perhaps delete the list box and recreate it or even replace the entire form. I'm sure a search of the forum would give much advice on corruption.
  16. bob fitz

    Listview will becomes empty when i disable it

    I don't think that is usual behavior. What code are you using to disable listbox? Can you post a copy of the db?
  17. bob fitz

    Limit the number of entries to a table with a specific value (preventing overbooking in airline)

    Asuming Assuming that SiegesNom holds the number of seats available before any bookings, you could: Change the Record Source of frmBooking to SELECT tblBooking.BookingID, tblBooking.PassengerID, tblBooking.BaggageNum, tblBooking.FlightID, tblAvion.SiegesNom, tblAvion.SiegesNom FROM tblAvion...
  18. bob fitz

    Limit the number of entries to a table with a specific value (preventing overbooking in airline)

    You will need some validation code in the forms before update event. Can you show us your table relationships, or post a copy of the db.
  19. bob fitz

    Seemed like a good idea to join!

    Welcome to the forum :)
  20. bob fitz

    Solved Problem scrolling on form with a tab control

    I created a textbox, Named txt1 and set its Height, Width and Top properties, all to 0. Set its Locked property to Yes. In the Change event of TabCtl257: Me.txt1.SetFocus
Top Bottom