Thursday, August 14, 2025

Git Repo Alerts

The latest release (10-Aug-2025) or later of the Parts Frontend application (Parts_Frontend.accde) includes Git Repo Status Alerts.

The purpose of the Git Alerts are two fold. 

  1. To remind and prompt users to commit changes staged in their local repositories to the master repository.

  2. To remind and prompt users to Pull Changes from the master repository when their local repo is not in sync with the master repository.
The option to use Git Alerts can be enabled or disabled in the Parts Frontend Config Table or by closing Parts and editing the user.ini file. The user.ini can be found in the same folder as the Parts Frontend.accde file.

If you concerns or questions please Contact Parts

That's it !

Sunday, June 15, 2025

Share Access Databases on Cloud Drives - Don't Do it !

Here's a breakdown of why sharing an Access database directly on OneDrive, Dropbox, Google Drive is problematic and what alternatives to consider:

Why it's not recommended:
  • Synchronization Issues:
    OneDrive synchronizes files by downloading and uploading the entire file. When multiple users are working on the same Access database, this can lead to conflicts and overwrites as each user's changes are synced.
  • Performance Degradation:
    Opening and saving the entire database file repeatedly can cause significant performance issues, especially with larger databases.
  • Potential for Data Corruption:
    The frequent syncing and potential conflicts can lead to data corruption and loss. 
Recommendations:
  1. 1. Split the Database:
    • Divide the Access database into a front-end (containing user interface elements like forms, reports, and queries) and a back-end (containing the data tables). 
    • Place the back-end on a shared network location (like a shared folder on a server or a NAS drive). 
    • Each user can then have a copy of the front-end on their local machine. 
    • This allows multiple users to work with the database concurrently without directly interfering with each other's changes.
  2. 2. Consider Cloud-Based Database Services:
    • Cloud hosted MySQL database solutions offer scalable and reliable alternatives. 
    • These services are designed to handle concurrent access and data management efficiently. 
    • They can be more complex to set up initially but offer long-term benefits for larger or more complex databases.In summary, while OneDrive can be convenient for sharing various file types, it's not the right tool for sharing Access databases due to synchronization and performance limitations. Splitting the database and using a cloud-based database solution is a better option for multi-user database sharing.
Parts is a split Access Database with a front-end application that supports both Local Access databases and remote cloud hosted MySQL databases.

Contact Parts for an online demo or to discuss how to create a shared Altium database library.

Randy Clemmons

How to Enable Excel Macros for *.xlsm Files on OneDrive

This post is being made in the hopes that it will save some other people time that are still looking for a fix, or will be looking for a fix in the future.

  1. Open Excel

  2. Navigate to Trust Center Settings

    1. Developer > Macro Security OR

    2. File > Options > Trust Center > Trust Center Settings

  3. Go to Trusted Locations

  4. Click "add new location" and put https://d.docs.live.net in the text box that pops up.

    1. Be sure to click the checkbox "Subfolders of this location are also trusted"

  5. Click Ok and restart excel.

Note, this will trust all macros of all files in your OneDrive, so I recommend taking the appropriate security steps to ensure you're only saving files in OneDrive (that you want to open in app, at least) that you trust.

Source: 

Enabling Macros on Workbooks from OneDrive - reddit

That's it !