Search results

  1. 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...
  2. 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 :))
  3. 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...
  4. 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 :))
  5. 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...
  6. 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?
  7. 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
  8. Babycat

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

    Oh, yes, so simple as it is. Thank you
  9. 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...
  10. 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...
  11. 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...
  12. 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.
  13. 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!
  14. Babycat

    Solved Accumulative Quantity in query

    I need it in both form and report, I will try your suggested technique
  15. Babycat

    Solved Accumulative Quantity in query

    The Average_price and inventory BalanceQty at a point in the past dont depend on today price. So saving them to table is fine. I can save them by recordset method at the time the transaction is being proceeded. However, they are calculated values, so most ppl suggest not saving them to table, it...
  16. Babycat

    Solved Accumulative Quantity in query

    Hi CJ_London I was not confident with my english, too long post may not emphasize my need. Yes, i need "average pricing" calculation scheme. I did not understand much about accounting terms, too. I am aware that the calculated value will be stored at some certain point to re-use later. However...
  17. Babycat

    Solved Accumulative Quantity in query

    Looks promising, I will try it.
  18. Babycat

    Solved Accumulative Quantity in query

    I am doing inventory access project, where user can trace back an item's data at any time in the past. I am trying to extract these info from ORDER and ORDERDETAIL table For example, customer randomly desires to view the info of item A in Q2 (Mar/01 to June/31) - ImportQty, Import_Amount, -...
  19. Babycat

    Solved Accumulative Quantity in query

    Should I work it out with recordset method? it's likely simpler
  20. Babycat

    Solved Accumulative Quantity in query

    Hi everyone, I have table/query which includes 4 fields as below picture. Intype field indicates import to or export from inventory. I want a make an extra column - Balance Qty which is actual quantity at each time. How can I make a such query? If that is hard or complicated with multiple...
Back
Top Bottom