Search results

  1. Babycat

    All records in table disappeared

    I silently checked my login-form. Somehow, it bounds to tbl_User accidentally, it could be my intention in the past. But textboxes dont bound to any field. Therefore, I dont have "delete all" record issue. But for safety, I have removed bounded table from the form. :)
  2. Babycat

    How to make popup message or notification on shared database

    I have found this thread after mine posted... https://www.access-programmers.co.uk/forums/threads/send-message-to-specific-user-in-access-multi-user-based-system.314141/ Downloaded arnelgp example code, if i am not wrong, it only can check the new msg at the momment of form opening. So, what if...
  3. Babycat

    How to make popup message or notification on shared database

    Hi everyone, I am designing an access program that shares BE for multi-users on LAN... I currently dont know how to push a message to specific user. For example, an inventory user has just made a goods delivery request via his FE into system. At this time, the FE of accountant-user should...
  4. Babycat

    SQL server to new user

    Thank you, It is clear to me. so SQL server with Access is helpful to by pass Access limitation of of 2G BE size, SQL server might handles conlision better than Access... But at the end, Access BE and SQL server is not a good choice to go "online app". Thanks again for your clarification
  5. Babycat

    SQL server to new user

    Hi everybody I am not a database guy, my first Access program was built and delivered a year ago, I had learnt everything myself from our forum and internet. Until now, I can completely build an small access program for single user/PC. I am learning to share the BE on network drive and mutiple...
  6. Babycat

    Solved Need to check if there is data before requery form?

    Yeah, I saw your update, as statistical theory: The larger sample size is always give the better result. Thank very much for your efforts. Unfortunately, yes, update every second. Let me remove the "second"
  7. Babycat

    Solved Need to check if there is data before requery form?

    Oh, yes, my form having timer to display current date time on top of header section...But your form doesn't. Flickering happens on both my form and yours. I have tried to use Application.Echo but no helps. I remember I have asked someone in our forum a year ago, he tested my form and no...
  8. Babycat

    Solved Need to check if there is data before requery form?

    Impressive test! What makes difference btw constant "1" and "*" ? However, my feeling is DCount* meaningful to recordcount.... it just counts whatever :))
  9. Babycat

    Solved Need to check if there is data before requery form?

    Yeah, I have studied the design, One continuous form and most of controls are placed in its header section. Therefore, it looks like split-form. My current project is almost same concept but the continuous form is in a subform, so that I can save its left or right side area for other things...
  10. Babycat

    Solved Need to check if there is data before requery form?

    I just downloaded. It is great demonstration. I will "Ctrl +H" my VBA code now :))
  11. Babycat

    Solved Need to check if there is data before requery form?

    Split form of Access is not flexible enough. Yes, my subform is not updateable, it is to only display the product list. Why dont you ultilize the mainform to shows the detail? What is benefit of using second subform? btw: When design the forms in this way, both forms are using same data from...
  12. Babycat

    Solved Need to check if there is data before requery form?

    I did not know that, so far. So it sweeps through all row and add 1 to the result?
  13. Babycat

    Solved Need to check if there is data before requery form?

    Thank you very much. I will read them, I know your articles are always informative
  14. Babycat

    Solved Need to check if there is data before requery form?

    Oh, yes, so simple as it is. Thank you
  15. Babycat

    Solved Need to check if there is data before requery form?

    Hello everyone, I have the main and subform that both use same table TBLPRODUCT. The subform is a continous form so that list out all products name while mainform show the product detail which is currently selected on subform. If the table TBLPRODUCT is empty, somehow the subform (and other...
  16. Babycat

    Query to select a closest date

    is that OK with function abs here? It might return the record with greater than "textbox" input date...
  17. Babycat

    Query to select a closest date

    Sorry to make you confused, I should correct it to "closest and smaller". The "CreatedDate" field is actually the Order creadted-date of products. Each product would have many orderIDs therefore many "CreatedDate". I want query's result with productIDs and orderdate which made before...
  18. Babycat

    Query to select a closest date

    Hi Everyone. How to build a query that select ProductID with the closest date to a dynamic entered date (from a textbox) as picture below Please help me Thank you.
  19. Babycat

    Solved Accumulative Quantity in query

    With very little db experience, this is really useful information for me. The running sums play the role of database checksum, it detects if data has been changed I am gonna redesign my table for saving calculated data.... Thank you!
  20. Babycat

    Solved Accumulative Quantity in query

    I need it in both form and report, I will try your suggested technique
Back
Top Bottom