Search results

  1. G

    Seeking a Moderator for the Moderators

    1. Technical expertise is not a requirement the moderator of moderators. They provide an oversight view of the "civility" of moderator responses, which we all hope the moderators display. Acknowledgement of issues and processes for de/escalation, in view of AWF/ and incident log / action I would...
  2. G

    Google Voice Feature - Schedule Send

    Happy Birthday! ditto to Gasman's comment.
  3. G

    Blinding Glimpse of the Obvious

    Even for small orgs a business continuity plan is needed - not just for the IT systems. Fires and floods can affect physical records too! and then who is the back up for performing roles if key personnel are lost without warning? And then you have to maintain the plan, check it is workable and...
  4. G

    Access Based Media Manager

    Referring to the doc management app you built @BlueSpruce these are some observations that you might want to consider On checking out the application here are a few observations/criticisms and personal recommendations: 1. Schema: the Document table has two fields: DocumentStorageLocation and...
  5. G

    Working with form records

    When typing in the notes section it appears you are adding that note to a current record (which has no product identified). Is that what you want to do? (I would expect some validation to prevent that occurring). The record should be saved when moving focus off that record (with validation). As...
  6. G

    Speed Up Query

    Irrespective of expertise in Access, what you have is a problem with the design of the database, as the above statement illuminates the issue. The development of a database requires that analysis is performed to determine how best to store the data to minimize redundancy, remove ambiguity in...
  7. G

    Access Based Media Manager

    How would "Date of service" relate to some of these doc types? Effective date? Date of document creation, Date registered in application? And how would you want to handle update / replacements eg wills, advanced care directives. Do you wish to be able to enable a master document to have related...
  8. G

    Access Based Media Manager

    Can documents be categorised as both medical and financial or ... ? Is a medical certificate/ health fund membership a credential? As this is a patient populated record of documents, the categorization is probably best focused on simplicity.
  9. G

    Selecting only records where both of two values exist

    Yep - my misread - I can only blame the hay fever I have atm. The ID in tblContact_categories is superfluous as you suggested, if it is not defined as the PK rather than the existing composite PK.
  10. G

    Selecting only records where both of two values exist

    It is the Contactid in tblcontacts that is superfluous, given your explanation above, not the ContactID in tblcontact_categories. There it is used as FK to resolve the N:N relationship of contacts to categories.
  11. G

    Selecting only records where both of two values exist

    BTW Category type in tblContact_Category appears to be redundant - it should be removed as you have it in tblCategoryTypes. Re the query - think of it as two sets of data - one for bikes and one for cars - and yuo need the intersection of the two sets.
  12. G

    Access Based Media Manager

    Yes, the sensitivities of personal health information (and consequent regulation), as well as the breadth and depth of health data makes interoperability extremely complex. While your application is simply to provide a (set) of health documents, they remain outside the commercial EHR...
  13. G

    Access Based Media Manager

    So this is an application that the healthcare patients use - they supply the docs (through scanning, attaching), and review and then may send those to a medical record - is that external? If so the process for accepting such records may/will need stringent verification/validation, which may...
  14. G

    Solved Begginer! please help.

    Glad to help you. You should evaluate it carefully and I would expect some questions to be raised as you work with it - as I do :) (case in point: the decision about how you choose to implement txApplied and the associated MedicationDetail, Procedure and VaxGiven tables as these have 1:1...
  15. G

    Solved Begginer! please help.

    @FeelCore Having reviewed your database structure, language issues aside (some items I was not able to decipher), I think you need to consider the following for a better more robust structure on which to build your application: Happy to discuss details. Edit: I made a few small changes and...
  16. G

    Solved Begginer! please help.

    Commenting upon the database-structure-png: You have made a decision to combine Client and Animal in the one table. That would appear a serious error in design. A client may have multiple animals, at any one time, and the animals a client has and brings to your clinic for a visit does change as...
  17. G

    Pb VBA

    No. @Claude Parisel It is the wrong command - see post #6. The DoCmd.FindRecord method in Microsoft Access VBA is used to find a specific record based on a search string. It mimics the functionality of the "Find" dialog box in Access. Me.[PN].SetFocus oCmd.FindRecord "Père", , , , , acCurrent...
  18. G

    Pb VBA

    DoCmd GoToRecord is used to move to a record by reference to the absolute or relative position of the record - it must specify a valid record number. Hence the proposed text matches will not work. it is the wrong command. Use a filter or DoCmd.findrecord...
  19. G

    Solved Add Record VBA Not working

    Yes - it seems odd: acAdd is an enumeration for acOpenDataMode (https://learn.microsoft.com/en-us/office/vba/api/access.acopendatamode) but that is not acFormOpenDataMode. The first is used when opening a table, query, stored procedure, view - it does not mention a form or report. Perhaps an...
  20. G

    Solved Add Record VBA Not working

    And in regards to points 1 and 2? Do you have the form properties for allow additions set? or for Data Entry to Yes?
Back
Top Bottom