Search results

  1. M

    Query Does Not Work

    You cannot "save" data in a form or report, only in a table. The real question is "What is the regulatory requirement". Do you need to print and save the report for a period of time? Can you keep an electronic copy for a period of time? Or do your regulators require that the system generate the...
  2. M

    Import-export permit tracking system

    And do you have questions?
  3. M

    Import-export permit tracking system

    What reports or other outputs will your system need to generate? Will this need timeline presentation and tracking?
  4. M

    Import-export permit tracking system

    I would, personally, never store documents or images in a database. I'd instead have them stored in a directory and have the path to the documents stored. This will greatly reduce the size of your database, allow you to use a variety of programs to access the documents and images natively, and...
  5. M

    Solved How to Create Tile-Style Buttons on MS Access Forms?

    Adding 2k images to a multi-meg application won't cause "over-sizing" issues.
  6. M

    On click where conditions help

    Never said to add an "Empty" record. In some cases, adding a record that indicates "X" started the application on date "Y" is required for other use, such as showing "X" opened the store on "DATE", even if there ends up being no business on "DATE". Once OP indicates if this is something needed...
  7. M

    Counting specific numbers in textbox of two or more rows , (no duplicates)

    Are you trying to; 1) Return the COUNT of rows where there is a number in a specific column? 2) Return the COUNT of rows where there is a number in any column? 3) Return the number of columns per row that have numbers then total this number?
  8. M

    Calculating Two Query Sums even if No data present

    Now comes the hard part. Start writing out exactly what you need as outputs and what inputs are available, then start writing out what your data should look like. There are a lot of us who are willing to help, but this is difficult because only YOU can say what does or doesn't need to be in...
  9. M

    pdf shrinks report

    Are you "PRINTING" your report to PDF or doing something different? And by shrinking, what is the margin when printed VS what is the margin in PDF?
  10. M

    Finding missing No

    So from your description, you are going to want to make a query where you use left joins to your parent table. I would also start by making a query for EACH child table that will return either 0 or 1 record (select top 1 from a sort order such as date) to give you what you have above. As you...
  11. M

    Calculating Two Query Sums even if No data present

    By line items, are they in a child table OR are they fields in your WorkOrder table?
  12. M

    Finding missing No

    Please let me know if this is what you are really trying to do. "I have a table that has 4 child tables. For each record in the parent table, I need to identity if they are missing a child record in each of the child tables". If yes, are you looking for a query that returns "Parent table /...
  13. M

    Solved Variable in HAVING clause

    Please note, you can use debug.print or a MsgBox to show you the contents of your sQry before you run it. I'd ALWAYS use something like this to verify my SQL is correct before ever trying to use it on data.
  14. M

    On click where conditions help

    Do you have code on Form1 that checks for the existence of the current days record? If not, you could set up Form1 to check when it opens. If there isn't a record you could add one there. Much of this depends on if you need to know every day the system is started VS you only want records in the...
  15. M

    Linking to multiple CSV files and renaming tables without ".CSV"

    That's what I get for not checking each posts submission date...
  16. M

    i want to make school data base

    While many have offered their view, I'd add something that may help you MASSIVELY in your endevor. Have you written down exactly how students relate to coursework and how it is tracked currently? Have you gotten a list of what reports or other outputs will be needed from your database? This...
  17. M

    Linking to multiple CSV files and renaming tables without ".CSV"

    This sounds like an operational issue you are trying to fix with code. Is there a very good operational reason they cannot provide filenames that are consistent?
  18. M

    Python - Hidden Text / Html Mail

    If your email is ending up in "Spam", why is the recipient client putting it there? Is this unsolicited email? Is your sending address a known spammer? Are you using a subject that would cause the recipient to kick it to spam? And as important, why would you want to hide something in an email...
  19. M

    FE + BE safe ?

    So "Youth proofed?" 🤣🤣🤣
  20. M

    Important Security Guidelines

    User name or ID is authenticated by a password, thus 1 factor authentication for said username/ID. Means I can't just enter "DickyP" as my user, I need to authenticate it.
Back
Top Bottom