Search results

  1. bob fitz

    Solved Updating a table with a value from a mainform when a subform updates

    Leif As you liked the example query, I've attached a copy of the db with an example of how it might be done on a form (frmPickMedisMain)
  2. bob fitz

    Solved Updating a table with a value from a mainform when a subform updates

    As I've already said, I don't think you should be keeping the same data in more than one table, but rather use a query to retrieve the relevant data. Take a look at "qryPickMedia" in the attached. You could use a similar query as the Record Source of a form and use a combo on that form to...
  3. bob fitz

    Solved Updating a table with a value from a mainform when a subform updates

    Can you at least tell us which form we need to look at.
  4. bob fitz

    Solved Updating a table with a value from a mainform when a subform updates

    Have you tried to "Zip" the file
  5. bob fitz

    Solved Updating a table with a value from a mainform when a subform updates

    Not sure that it would be a good idea to have the media data in both tables. I'd have thought that you could use a query to tell you in which media you have a particular song. Can you post a copy of the db for us to play with.
  6. bob fitz

    Cannot find the source code for the calculations marked in red

    I believe the calculations are achieved by using expressions in the Control Source property of the controls (text boxes).
  7. bob fitz

    search field in form that filter data from subform in form

    Welcome to the forum :) Can you post a copy of the db and tell us something about its purpose.
  8. bob fitz

    Slow response to following in-site page link

    I've been busy, so I haven't been here much of late, but I don't appear to have any problems :). Yet;).
  9. bob fitz

    DSum on a Form from Date - I hate dates :-(

    Perhaps: =DSum("Covers","tbl_Net_RestaurantBookings",MyToday("CheckIn") And ([Status] Is Null))
  10. bob fitz

    Hi Fellow Access Users

    Hello Alan. Welcome to the forum :):)
  11. bob fitz

    Christmas

    Merry Christmas everybody 🎄
  12. bob fitz

    Solved Afterupdate with no update.

    Try the following line of code in the After Update event of the combo: DoCmd.GoToControl "[NameOfYourControl]"
  13. bob fitz

    Solved Code running report despite default set to not

    I'm using Office Professional 2019 (32 bit)
  14. bob fitz

    Solved Code running report despite default set to not

    I have tried the OP's code on a later version of Access, and it works without any issues. Could corruption of the control or form be the cause of the problem?
  15. bob fitz

    Generating report on a dynamic subform

    Are you sure the error code is 348 ? Which line of your code causes the error ?
  16. bob fitz

    Access 2007...

    It would be helpful if you could also post the backend database file.
  17. bob fitz

    Tables

    Perhaps there hasn't been any ;)
  18. bob fitz

    hello dear hope you are good I want to add the total bill amount in the header. How can I do it?

    I would change the name of Text25 to something that has some meaning E.g. txtInvTotal
  19. bob fitz

    hello dear hope you are good I want to add the total bill amount in the header. How can I do it?

    try: =[CreditInvoices_Subform].[Form]![Text25]
Back
Top Bottom