Search results

  1. bob fitz

    Hello/ Complete novice here/

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

    Form Open in Maximize

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

    Form Open in Maximize

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

    My introduction

    Welcome to the forum :)
  5. bob fitz

    Finding missing No

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

    Finding missing No

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

    Listview will becomes empty when i disable it

    So sorry. I misread that. I am unable to help with listview.
  9. 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.
  10. 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?
  11. 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...
  12. 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.
  13. bob fitz

    Seemed like a good idea to join!

    Welcome to the forum :)
  14. 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
  15. bob fitz

    Solved Problem scrolling on form with a tab control

    You're welcome. Glad that I could help. Post back If you have any questions on the changes that I made.
  16. bob fitz

    Solved Problem scrolling on form with a tab control

    Try the attached file.
  17. bob fitz

    DCount on report

    Can you post a copy o your db
  18. bob fitz

    MEMBERSHIP TRACKING DATABASE SOFTWARE

    IMHO a good db starts with good table design. Yours is like a spreadsheet. It has only one table. I would urge you to read a little on Db design, relationships, and normalization. Take a look at the attached db. I think you will need further tables. I have entered only the first record in...
  19. bob fitz

    macro or function preventing saving date to a field.

    Perhaps try setting Error Trapping to "Break on All Errors" in an attempt to find any code that is causing an error. Alternatively, you could post a copy the db for us to examine.
  20. bob fitz

    Introducing to forum members

    Hello. Welcome to the forum :)
Back
Top Bottom