Search results

  1. G

    Man murdered in 2021 "speaks" at killer's sentencing

    The issue is that the impact statement presented is that the "presentation" is an AI generated - a projected animated image of the victim: which in this case must be a confected representation given the victim was dead. The deceased did not have input/ or acknowledge personally that this was the...
  2. G

    Create and training record database

    One you will need to adapt and develop: https://access-diva.com/dm7.html
  3. G

    When I select courses in the SUBJECT enrolld List (List Box), the count either doesn’t show or shows incorrectly. How can I fix this? Please guide.

    Using @arnelgp 's working db - in your report, you can copy his formula from the form for SubjectCount and for TotalCost to the applicable items in the report. However you also need to do some corrections, so that the formulae for TotalCost refers to the SubjectCount in the report. (also the...
  4. G

    VPN to produce the impersonation of a specific region/country /ip range

    You can select - for the free account, there are 10 servers in different countries from which you can select - one of which is the USA. Can't remember whether it retains this as a preference for the next time.
  5. G

    VPN to produce the impersonation of a specific region/country /ip range

    I used Windscribe - free vpn - for light use (10GB)
  6. G

    Refactoring an Access Database

    This might be a starting point: Richard Rost: Multi-Language
  7. G

    Database structure

    @bilakos93 Taking your database, I modified the schema as shown here (taking account of the suggestions made earlier) to support multiple scans per appointment, and to allow the location for the appointment where the scans to be conducted for the appointment to be recorded. The location would...
  8. G

    Database structure

    Quick question @LarryE - why have an inpatientDept in the patient record? (no relationship to Dept - perhaps it needs the Patient-Department table to resolve a M:M relationship of patient and Department that is not shown?) - the relationship of Scanlocation to Department to Doctor allow the...
  9. G

    Database structure

    A quick review: You have a table tblScans - which describes the types of Scans. The FK to scantype in tblBookings means you can only have one scan type for a booking. As multiple scans are possible for a single booking you must have a table tblScanBooking which lies between these two tables: 1:M...
  10. G

    When I select courses in the SUBJECT enrolld List (List Box), the count either doesn’t show or shows incorrectly. How can I fix this? Please guide.

    Works for me too.. post #20 shows no other values entered apart from the subjects in the combo. Would you expect that to work? On another note: while you have found a way to add courses as a multi-value field, that is not a recommended method for longer-term / robust storing of the data. You...
  11. G

    When I select courses in the SUBJECT enrolld List (List Box), the count either doesn’t show or shows incorrectly. How can I fix this? Please guide.

    Can you look at the properties of the list box, check the Event After update associated with it - and look at the vba? Can you set a Breakpoint at the start of the vba in that event and step thru the code: using <Fn - F8> until the error is triggered? What is the code on that line? Did you not...
  12. G

    When I select courses in the SUBJECT enrolld List (List Box), the count either doesn’t show or shows incorrectly. How can I fix this? Please guide.

    So given that both @arnelgp and @Gasman reported that the error was not raised when they used the application that you now need to do some investigation: look at the error message: What was the user defined function in After Update that cannot be found? Where did the UDF come from? Can you...
  13. G

    Update records on a SQL Table

    Discounts can be applied to the total sales order or to the individual item in the order. Further they may be % discounts or a fixed amount. The discount as applied is stored against the sales record or sales item as appropriate - and linked to a campaign / scheme: Employee discount, managers...
  14. G

    Make a negative number a "0"

    So if the (expression result) is < 0, then 0, else .... Apply the logic, syntax of the iif statement.
  15. G

    Database structure

    @LarryE - the design also needs to include the sonographer/radiologist who is being engaged for the appointment, not just the Dr from the Department who ordered the ultrasound (the Dr ID in ScanTime can't be used for both - and it is the schedule for the Dr performing the scan that is the...
  16. G

    Solved to return a ID value if criteria is met

    "Tax" column: IIf([tblEmployees].[Basic Salary] Between 0 And 12760, [tblEmployees].[Basic Salary])/([tblEmployees].[Salary Pay Period]), IIf([tblEmployees]![Basic Salary] Between 12760 And 25520, [tblEmployees].[Basic Salary]-[tblpayrolltaxes]![Lower])/([tblEmployees].[Salary Pay Period])...
  17. G

    Database structure

    I missed this earlier: If this is all you have to support the scans to be performed at an appointment then you will only be able to indicate one type of scan for each appointment. Earlier you indicated that you can have more than one scan scheduled at an appointment. If so then this is a...
  18. G

    Database structure

    Yes: as shown with the table structure, a single appointment can have one or more scans (of same or different types). Your form, displaying the appointment, will allow the addition of one or more scans to be performed. and post the appointment, the scans performed (usually as a subform) at the...
  19. G

    Combo Box Search Issue

    I appreciate the complexity of the questionnaire/response needed for the medical setting. It is indeed quite challenging and you may not be up to rejigging (normalising) the structure as suggested above. Pat's arrangement supports a simple multiple choice survey style arrangement that will not...
  20. G

    Database structure

    You should have some attribute which will indicate the source of the appointment: for outpatients you will have a referral from the GP. For internal, the source will be Hospital Dept. For an appointment of type Hospital Dept you will need a table to identify the Dept as an attribute in the...
Back
Top Bottom