├── README.md ├── Registry-Settings ├── Access2007_TrustedLocations_Kybucs.reg ├── Access2007_enableAllMacros.reg ├── Access2010_TrustedLocations_Kybucs.reg ├── Access2010_enableAllMacros.reg ├── Access2013_enableAllMacros.reg ├── Outlook2010_DelegateMail.reg ├── Outlook2013_DelegateMail.reg ├── Outlook2013_preferences_LinkedContacts.reg ├── Outlook2016_Activate_QueryBuilder.reg ├── Outlook2016_DelegateMail.reg └── Outlook2016_preferences_LinkedContacts.reg ├── databases ├── MicrosoftAccess.accdb ├── MicrosoftAccess.oasis └── omDragAndDrop.accdb ├── microsoftaccess.code-workspace └── src ├── Oasis ├── F_Login.def ├── F_Login.layout ├── F_UserLock.def ├── F_UserLock.layout ├── F_UserRole_Edit.def ├── F_UserRole_Edit.layout ├── F_UserRole_List.def ├── F_UserRole_List.layout ├── F_UserRole_List_Search.def ├── F_UserRole_List_Search.layout ├── F_User_Edit.def ├── F_User_Edit.layout ├── F_User_EditPassword.def ├── F_User_EditPassword.layout ├── F_User_List.def ├── F_User_List.layout ├── F_User_List_Search.def ├── F_User_List_Search.layout ├── F_omEmptyTable_Edit.def ├── F_omEmptyTable_Edit.layout ├── F_omEmptyTable_List.def ├── F_omEmptyTable_List.layout ├── F_omEmptyTable_List_Search.def ├── F_omEmptyTable_List_Search.layout ├── F_omSourceObjectControlTranslation_Edit.def ├── F_omSourceObjectControlTranslation_Edit.layout ├── F_omSourceObjectControlTranslation_List.def ├── F_omSourceObjectControlTranslation_List.layout ├── F_omSourceObjectControlTranslation_List_Search.def ├── F_omSourceObjectControlTranslation_List_Search.layout ├── M_WorkHourFunctions.def ├── M_omADODBFunctions.def ├── M_omAPI32FileFunctions.def ├── M_omAPIClipboard.def ├── M_omAPISpecialFolders.def ├── M_omAppSettings.def ├── M_omArrayFunctions.def ├── M_omBankAccountFunctions.def ├── M_omBaseClass.def ├── M_omByteArrayFunctions.def ├── M_omCollectionFunctions.def ├── M_omCommandBarFunctions.def ├── M_omConnectionString.def ├── M_omControl.def ├── M_omControlFunctions.def ├── M_omDAOFunctions.def ├── M_omDatabaseFunctions.def ├── M_omDateFunctions.def ├── M_omDefaultFunctions.def ├── M_omDefaults.def ├── M_omDevelopmentFunctions.def ├── M_omDynamicRecordState.def ├── M_omDynamicRecordStateTest.def ├── M_omExcel.def ├── M_omExcelEngine.def ├── M_omExcelFunctions.def ├── M_omExportFunctions.def ├── M_omExportManager.def ├── M_omFTP.def ├── M_omFileFunctions.def ├── M_omFormFunctions.def ├── M_omGlobalDeclarations.def ├── M_omGuidFunctions.def ├── M_omHTML.def ├── M_omInvoiceFunctions.def ├── M_omJSON.def ├── M_omJsonConverter.def ├── M_omKernalFunctions.def ├── M_omKeyObject.def ├── M_omKeyValue.def ├── M_omLibraryFunctions.def ├── M_omLogging.def ├── M_omLoggingFunctions.def ├── M_omMSAccessFunctions.def ├── M_omObjectFunctions.def ├── M_omOutlook.def ├── M_omPDFFunctions.def ├── M_omPictureFunctions.def ├── M_omPrinterSettingsManager.def ├── M_omPrinterSettingsManagerFunctions.def ├── M_omRecordsetFunctions.def ├── M_omReferenceFunctions.def ├── M_omReportFunctions.def ├── M_omSQLConnector.def ├── M_omSQLConnectorFunctions.def ├── M_omSQLDataAdapter.def ├── M_omSQLFunctions.def ├── M_omSQLObject.def ├── M_omSQLServerFunctions.def ├── M_omSSMAAConnector.def ├── M_omSSMAConnector_Test.def ├── M_omSeqFunctions.def ├── M_omSeqItem.def ├── M_omSourceObject.def ├── M_omSourceObjectControl.def ├── M_omStartup.def ├── M_omStringFunctions.def ├── M_omStringTagFunctions.def ├── M_omSystemProcessFunctions.def ├── M_omTableConnector.def ├── M_omTableFunctions.def ├── M_omTesseractOCR.def ├── M_omTimeRange.def ├── M_omTranslationEngine.def ├── M_omTranslationEngineFunctions.def ├── M_omUser.def ├── M_omUserFunctions.def ├── M_omUserRole.def ├── M_omUser_Edan.def ├── M_omWordEngine.def ├── M_omZipFunctions.def ├── Q_UserRole_List_Search.def ├── Q_UserRole_Select.def ├── Q_User_List_Search.def ├── Q_User_Select.def ├── Q_omEmptyTable_List_Search.def ├── Q_omEmptyTable_Select.def ├── Q_omLanguagesSourceObjectControls.def ├── Q_omSourceObjectControlTranslation_List_Search.def ├── Q_omSourceObjectControlTranslation_Select.def ├── Q_omSourceObjectControlTranslations_Build.def ├── S_omLinkDatabase.def ├── T_SSMAA_ConnectionTypes.dat ├── T_SSMAA_ConnectionTypes.def ├── T_SSMAA_ODBC_Tables.def ├── T_UserRoles.def ├── T_Users.dat ├── T_Users.def ├── T_omControls.dat ├── T_omControls.def ├── T_omEmptyTables.def ├── T_omLanguages.dat ├── T_omLanguages.def ├── T_omSourceObjectControlTranslations.dat ├── T_omSourceObjectControlTranslations.def ├── T_omSourceObjectControls.dat ├── T_omSourceObjectControls.def ├── T_omSourceObjects.dat ├── T_omSourceObjects.def ├── T_omSysDefaults.def └── Y_Properties.def └── VCS └── MicrosoftAccess.accdb.src ├── Export.log ├── dbs-properties.json ├── documents.json ├── forms ├── Login.bas ├── Login.cls ├── UserLock.bas ├── UserLock.cls ├── UserRole_Edit.bas ├── UserRole_Edit.cls ├── UserRole_List.bas ├── UserRole_List.cls ├── UserRole_List_Search.bas ├── UserRole_List_Search.cls ├── User_Edit.bas ├── User_Edit.cls ├── User_EditPassword.bas ├── User_EditPassword.cls ├── User_List.bas ├── User_List.cls ├── User_List_Search.bas ├── User_List_Search.cls ├── omEmptyTable_Edit.bas ├── omEmptyTable_Edit.cls ├── omEmptyTable_List.bas ├── omEmptyTable_List.cls ├── omEmptyTable_List_Search.bas ├── omEmptyTable_List_Search.cls ├── omSourceObjectControlTranslation_Edit.bas ├── omSourceObjectControlTranslation_Edit.cls ├── omSourceObjectControlTranslation_List.bas ├── omSourceObjectControlTranslation_List.cls ├── omSourceObjectControlTranslation_List_Search.bas └── omSourceObjectControlTranslation_List_Search.cls ├── macros └── omLinkDatabase.bas ├── menus └── OASIS-Logger.json ├── modules ├── omADODBFunctions.bas ├── omAPI32FileFunctions.bas ├── omAPIClipboard.bas ├── omAPISpecialFolders.bas ├── omAppSettings.cls ├── omArrayFunctions.bas ├── omBankAccountFunctions.bas ├── omBaseClass.cls ├── omByteArrayFunctions.bas ├── omCollectionFunctions.bas ├── omCommandBarFunctions.bas ├── omConnectionString.cls ├── omControl.cls ├── omControlFunctions.bas ├── omDAOFunctions.bas ├── omDatabaseFunctions.bas ├── omDateFunctions.bas ├── omDefaultFunctions.bas ├── omDefaults.cls ├── omDevelopmentFunctions.bas ├── omDynamicRecordState.cls ├── omDynamicRecordStateTest.bas ├── omExcel.cls ├── omExcelEngine.cls ├── omExcelFunctions.bas ├── omExportFunctions.bas ├── omExportManager.cls ├── omFTP.bas ├── omFileFunctions.bas ├── omFormFunctions.bas ├── omGlobalDeclarations.bas ├── omGuidFunctions.bas ├── omHTML.bas ├── omInvoiceFunctions.bas ├── omJSON.cls ├── omJsonConverter.bas ├── omKernalFunctions.bas ├── omKeyObject.cls ├── omKeyValue.cls ├── omLibraryFunctions.bas ├── omLogging.cls ├── omLoggingFunctions.bas ├── omMSAccessFunctions.bas ├── omObjectFunctions.bas ├── omOutlook.cls ├── omPDFFunctions.bas ├── omPictureFunctions.bas ├── omPrinterSettingsManager.cls ├── omPrinterSettingsManagerFunctions.bas ├── omRecordsetFunctions.bas ├── omReferenceFunctions.bas ├── omReportFunctions.bas ├── omSQLConnector.cls ├── omSQLConnectorFunctions.bas ├── omSQLDataAdapter.cls ├── omSQLFunctions.bas ├── omSQLObject.cls ├── omSQLServerFunctions.bas ├── omSSMAAConnector.bas ├── omSSMAConnector_Test.bas ├── omSeqFunctions.bas ├── omSeqItem.cls ├── omSourceObject.cls ├── omSourceObjectControl.cls ├── omStartup.bas ├── omStringFunctions.bas ├── omStringTagFunctions.bas ├── omSystemProcessFunctions.bas ├── omTableConnector.cls ├── omTableFunctions.bas ├── omTesseractOCR.bas ├── omTimeRange.cls ├── omTranslationEngine.cls ├── omTranslationEngineFunctions.bas ├── omUser.cls ├── omUserFunctions.bas ├── omUserRole.cls ├── omUser_Edan.cls ├── omWordEngine.cls └── omZipFunctions.bas ├── nav-pane-groups.json ├── project.json ├── queries ├── UserRole_List_Search.bas ├── UserRole_List_Search.sql ├── UserRole_Select.bas ├── UserRole_Select.sql ├── User_List_Search.bas ├── User_List_Search.sql ├── User_Select.bas ├── User_Select.sql ├── omEmptyTable_List_Search.bas ├── omEmptyTable_List_Search.sql ├── omEmptyTable_Select.bas ├── omEmptyTable_Select.sql ├── omLanguagesSourceObjectControls.bas ├── omLanguagesSourceObjectControls.sql ├── omSourceObjectControlTranslation_List_Search.bas ├── omSourceObjectControlTranslation_List_Search.sql ├── omSourceObjectControlTranslation_Select.bas ├── omSourceObjectControlTranslation_Select.sql ├── omSourceObjectControlTranslations_Build.bas └── omSourceObjectControlTranslations_Build.sql ├── tbldefs ├── SSMAA_ConnectionTypes.sql ├── SSMAA_ConnectionTypes.xml ├── SSMAA_ODBC_Tables.sql ├── SSMAA_ODBC_Tables.xml ├── UserRoles.sql ├── UserRoles.xml ├── Users.sql ├── Users.xml ├── omControls.sql ├── omControls.xml ├── omEmptyTables.sql ├── omEmptyTables.xml ├── omLanguages.sql ├── omLanguages.xml ├── omSourceObjectControlTranslations.sql ├── omSourceObjectControlTranslations.xml ├── omSourceObjectControls.sql ├── omSourceObjectControls.xml ├── omSourceObjects.sql ├── omSourceObjects.xml ├── omSysDefaults.sql └── omSysDefaults.xml ├── themes └── Office Theme │ ├── [Content_Types].xml │ ├── _rels │ └── .rels │ └── theme │ └── theme │ ├── _rels │ └── themeManager.xml.rels │ ├── theme1.xml │ └── themeManager.xml ├── vbe-project.json ├── vbe-references.json ├── vcs-index.json └── vcs-options.json /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/README.md -------------------------------------------------------------------------------- /Registry-Settings/Access2007_TrustedLocations_Kybucs.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Access2007_TrustedLocations_Kybucs.reg -------------------------------------------------------------------------------- /Registry-Settings/Access2007_enableAllMacros.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Access2007_enableAllMacros.reg -------------------------------------------------------------------------------- /Registry-Settings/Access2010_TrustedLocations_Kybucs.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Access2010_TrustedLocations_Kybucs.reg -------------------------------------------------------------------------------- /Registry-Settings/Access2010_enableAllMacros.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Access2010_enableAllMacros.reg -------------------------------------------------------------------------------- /Registry-Settings/Access2013_enableAllMacros.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Access2013_enableAllMacros.reg -------------------------------------------------------------------------------- /Registry-Settings/Outlook2010_DelegateMail.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Outlook2010_DelegateMail.reg -------------------------------------------------------------------------------- /Registry-Settings/Outlook2013_DelegateMail.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Outlook2013_DelegateMail.reg -------------------------------------------------------------------------------- /Registry-Settings/Outlook2013_preferences_LinkedContacts.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Outlook2013_preferences_LinkedContacts.reg -------------------------------------------------------------------------------- /Registry-Settings/Outlook2016_Activate_QueryBuilder.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Outlook2016_Activate_QueryBuilder.reg -------------------------------------------------------------------------------- /Registry-Settings/Outlook2016_DelegateMail.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Outlook2016_DelegateMail.reg -------------------------------------------------------------------------------- /Registry-Settings/Outlook2016_preferences_LinkedContacts.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/Registry-Settings/Outlook2016_preferences_LinkedContacts.reg -------------------------------------------------------------------------------- /databases/MicrosoftAccess.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/databases/MicrosoftAccess.accdb -------------------------------------------------------------------------------- /databases/MicrosoftAccess.oasis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/databases/MicrosoftAccess.oasis -------------------------------------------------------------------------------- /databases/omDragAndDrop.accdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/databases/omDragAndDrop.accdb -------------------------------------------------------------------------------- /microsoftaccess.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/microsoftaccess.code-workspace -------------------------------------------------------------------------------- /src/Oasis/F_Login.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_Login.def -------------------------------------------------------------------------------- /src/Oasis/F_Login.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_Login.layout -------------------------------------------------------------------------------- /src/Oasis/F_UserLock.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserLock.def -------------------------------------------------------------------------------- /src/Oasis/F_UserLock.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserLock.layout -------------------------------------------------------------------------------- /src/Oasis/F_UserRole_Edit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserRole_Edit.def -------------------------------------------------------------------------------- /src/Oasis/F_UserRole_Edit.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserRole_Edit.layout -------------------------------------------------------------------------------- /src/Oasis/F_UserRole_List.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserRole_List.def -------------------------------------------------------------------------------- /src/Oasis/F_UserRole_List.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserRole_List.layout -------------------------------------------------------------------------------- /src/Oasis/F_UserRole_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserRole_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/F_UserRole_List_Search.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_UserRole_List_Search.layout -------------------------------------------------------------------------------- /src/Oasis/F_User_Edit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_Edit.def -------------------------------------------------------------------------------- /src/Oasis/F_User_Edit.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_Edit.layout -------------------------------------------------------------------------------- /src/Oasis/F_User_EditPassword.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_EditPassword.def -------------------------------------------------------------------------------- /src/Oasis/F_User_EditPassword.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_EditPassword.layout -------------------------------------------------------------------------------- /src/Oasis/F_User_List.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_List.def -------------------------------------------------------------------------------- /src/Oasis/F_User_List.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_List.layout -------------------------------------------------------------------------------- /src/Oasis/F_User_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/F_User_List_Search.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_User_List_Search.layout -------------------------------------------------------------------------------- /src/Oasis/F_omEmptyTable_Edit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omEmptyTable_Edit.def -------------------------------------------------------------------------------- /src/Oasis/F_omEmptyTable_Edit.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omEmptyTable_Edit.layout -------------------------------------------------------------------------------- /src/Oasis/F_omEmptyTable_List.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omEmptyTable_List.def -------------------------------------------------------------------------------- /src/Oasis/F_omEmptyTable_List.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omEmptyTable_List.layout -------------------------------------------------------------------------------- /src/Oasis/F_omEmptyTable_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omEmptyTable_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/F_omEmptyTable_List_Search.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omEmptyTable_List_Search.layout -------------------------------------------------------------------------------- /src/Oasis/F_omSourceObjectControlTranslation_Edit.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omSourceObjectControlTranslation_Edit.def -------------------------------------------------------------------------------- /src/Oasis/F_omSourceObjectControlTranslation_Edit.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omSourceObjectControlTranslation_Edit.layout -------------------------------------------------------------------------------- /src/Oasis/F_omSourceObjectControlTranslation_List.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omSourceObjectControlTranslation_List.def -------------------------------------------------------------------------------- /src/Oasis/F_omSourceObjectControlTranslation_List.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omSourceObjectControlTranslation_List.layout -------------------------------------------------------------------------------- /src/Oasis/F_omSourceObjectControlTranslation_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omSourceObjectControlTranslation_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/F_omSourceObjectControlTranslation_List_Search.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/F_omSourceObjectControlTranslation_List_Search.layout -------------------------------------------------------------------------------- /src/Oasis/M_WorkHourFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_WorkHourFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omADODBFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omADODBFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omAPI32FileFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omAPI32FileFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omAPIClipboard.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omAPIClipboard.def -------------------------------------------------------------------------------- /src/Oasis/M_omAPISpecialFolders.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omAPISpecialFolders.def -------------------------------------------------------------------------------- /src/Oasis/M_omAppSettings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omAppSettings.def -------------------------------------------------------------------------------- /src/Oasis/M_omArrayFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omArrayFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omBankAccountFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omBankAccountFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omBaseClass.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omBaseClass.def -------------------------------------------------------------------------------- /src/Oasis/M_omByteArrayFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omByteArrayFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omCollectionFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omCollectionFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omCommandBarFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omCommandBarFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omConnectionString.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omConnectionString.def -------------------------------------------------------------------------------- /src/Oasis/M_omControl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omControl.def -------------------------------------------------------------------------------- /src/Oasis/M_omControlFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omControlFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omDAOFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDAOFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omDatabaseFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDatabaseFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omDateFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDateFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omDefaultFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDefaultFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omDefaults.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDefaults.def -------------------------------------------------------------------------------- /src/Oasis/M_omDevelopmentFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDevelopmentFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omDynamicRecordState.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDynamicRecordState.def -------------------------------------------------------------------------------- /src/Oasis/M_omDynamicRecordStateTest.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omDynamicRecordStateTest.def -------------------------------------------------------------------------------- /src/Oasis/M_omExcel.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omExcel.def -------------------------------------------------------------------------------- /src/Oasis/M_omExcelEngine.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omExcelEngine.def -------------------------------------------------------------------------------- /src/Oasis/M_omExcelFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omExcelFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omExportFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omExportFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omExportManager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omExportManager.def -------------------------------------------------------------------------------- /src/Oasis/M_omFTP.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omFTP.def -------------------------------------------------------------------------------- /src/Oasis/M_omFileFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omFileFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omFormFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omFormFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omGlobalDeclarations.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omGlobalDeclarations.def -------------------------------------------------------------------------------- /src/Oasis/M_omGuidFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omGuidFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omHTML.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omHTML.def -------------------------------------------------------------------------------- /src/Oasis/M_omInvoiceFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omInvoiceFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omJSON.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omJSON.def -------------------------------------------------------------------------------- /src/Oasis/M_omJsonConverter.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omJsonConverter.def -------------------------------------------------------------------------------- /src/Oasis/M_omKernalFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omKernalFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omKeyObject.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omKeyObject.def -------------------------------------------------------------------------------- /src/Oasis/M_omKeyValue.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omKeyValue.def -------------------------------------------------------------------------------- /src/Oasis/M_omLibraryFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omLibraryFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omLogging.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omLogging.def -------------------------------------------------------------------------------- /src/Oasis/M_omLoggingFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omLoggingFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omMSAccessFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omMSAccessFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omObjectFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omObjectFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omOutlook.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omOutlook.def -------------------------------------------------------------------------------- /src/Oasis/M_omPDFFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omPDFFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omPictureFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omPictureFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omPrinterSettingsManager.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omPrinterSettingsManager.def -------------------------------------------------------------------------------- /src/Oasis/M_omPrinterSettingsManagerFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omPrinterSettingsManagerFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omRecordsetFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omRecordsetFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omReferenceFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omReferenceFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omReportFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omReportFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omSQLConnector.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSQLConnector.def -------------------------------------------------------------------------------- /src/Oasis/M_omSQLConnectorFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSQLConnectorFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omSQLDataAdapter.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSQLDataAdapter.def -------------------------------------------------------------------------------- /src/Oasis/M_omSQLFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSQLFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omSQLObject.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSQLObject.def -------------------------------------------------------------------------------- /src/Oasis/M_omSQLServerFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSQLServerFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omSSMAAConnector.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSSMAAConnector.def -------------------------------------------------------------------------------- /src/Oasis/M_omSSMAConnector_Test.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSSMAConnector_Test.def -------------------------------------------------------------------------------- /src/Oasis/M_omSeqFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSeqFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omSeqItem.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSeqItem.def -------------------------------------------------------------------------------- /src/Oasis/M_omSourceObject.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSourceObject.def -------------------------------------------------------------------------------- /src/Oasis/M_omSourceObjectControl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSourceObjectControl.def -------------------------------------------------------------------------------- /src/Oasis/M_omStartup.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omStartup.def -------------------------------------------------------------------------------- /src/Oasis/M_omStringFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omStringFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omStringTagFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omStringTagFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omSystemProcessFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omSystemProcessFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omTableConnector.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omTableConnector.def -------------------------------------------------------------------------------- /src/Oasis/M_omTableFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omTableFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omTesseractOCR.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omTesseractOCR.def -------------------------------------------------------------------------------- /src/Oasis/M_omTimeRange.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omTimeRange.def -------------------------------------------------------------------------------- /src/Oasis/M_omTranslationEngine.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omTranslationEngine.def -------------------------------------------------------------------------------- /src/Oasis/M_omTranslationEngineFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omTranslationEngineFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omUser.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omUser.def -------------------------------------------------------------------------------- /src/Oasis/M_omUserFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omUserFunctions.def -------------------------------------------------------------------------------- /src/Oasis/M_omUserRole.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omUserRole.def -------------------------------------------------------------------------------- /src/Oasis/M_omUser_Edan.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omUser_Edan.def -------------------------------------------------------------------------------- /src/Oasis/M_omWordEngine.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omWordEngine.def -------------------------------------------------------------------------------- /src/Oasis/M_omZipFunctions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/M_omZipFunctions.def -------------------------------------------------------------------------------- /src/Oasis/Q_UserRole_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_UserRole_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/Q_UserRole_Select.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_UserRole_Select.def -------------------------------------------------------------------------------- /src/Oasis/Q_User_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_User_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/Q_User_Select.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_User_Select.def -------------------------------------------------------------------------------- /src/Oasis/Q_omEmptyTable_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_omEmptyTable_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/Q_omEmptyTable_Select.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_omEmptyTable_Select.def -------------------------------------------------------------------------------- /src/Oasis/Q_omLanguagesSourceObjectControls.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_omLanguagesSourceObjectControls.def -------------------------------------------------------------------------------- /src/Oasis/Q_omSourceObjectControlTranslation_List_Search.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_omSourceObjectControlTranslation_List_Search.def -------------------------------------------------------------------------------- /src/Oasis/Q_omSourceObjectControlTranslation_Select.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_omSourceObjectControlTranslation_Select.def -------------------------------------------------------------------------------- /src/Oasis/Q_omSourceObjectControlTranslations_Build.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Q_omSourceObjectControlTranslations_Build.def -------------------------------------------------------------------------------- /src/Oasis/S_omLinkDatabase.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/S_omLinkDatabase.def -------------------------------------------------------------------------------- /src/Oasis/T_SSMAA_ConnectionTypes.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_SSMAA_ConnectionTypes.dat -------------------------------------------------------------------------------- /src/Oasis/T_SSMAA_ConnectionTypes.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_SSMAA_ConnectionTypes.def -------------------------------------------------------------------------------- /src/Oasis/T_SSMAA_ODBC_Tables.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_SSMAA_ODBC_Tables.def -------------------------------------------------------------------------------- /src/Oasis/T_UserRoles.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_UserRoles.def -------------------------------------------------------------------------------- /src/Oasis/T_Users.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_Users.dat -------------------------------------------------------------------------------- /src/Oasis/T_Users.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_Users.def -------------------------------------------------------------------------------- /src/Oasis/T_omControls.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omControls.dat -------------------------------------------------------------------------------- /src/Oasis/T_omControls.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omControls.def -------------------------------------------------------------------------------- /src/Oasis/T_omEmptyTables.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omEmptyTables.def -------------------------------------------------------------------------------- /src/Oasis/T_omLanguages.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omLanguages.dat -------------------------------------------------------------------------------- /src/Oasis/T_omLanguages.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omLanguages.def -------------------------------------------------------------------------------- /src/Oasis/T_omSourceObjectControlTranslations.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSourceObjectControlTranslations.dat -------------------------------------------------------------------------------- /src/Oasis/T_omSourceObjectControlTranslations.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSourceObjectControlTranslations.def -------------------------------------------------------------------------------- /src/Oasis/T_omSourceObjectControls.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSourceObjectControls.dat -------------------------------------------------------------------------------- /src/Oasis/T_omSourceObjectControls.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSourceObjectControls.def -------------------------------------------------------------------------------- /src/Oasis/T_omSourceObjects.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSourceObjects.dat -------------------------------------------------------------------------------- /src/Oasis/T_omSourceObjects.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSourceObjects.def -------------------------------------------------------------------------------- /src/Oasis/T_omSysDefaults.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/T_omSysDefaults.def -------------------------------------------------------------------------------- /src/Oasis/Y_Properties.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/Oasis/Y_Properties.def -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/Export.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/Export.log -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/dbs-properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/dbs-properties.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/documents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/documents.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/Login.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/Login.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/Login.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/Login.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserLock.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserLock.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserLock.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserLock.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_Edit.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_Edit.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_Edit.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_Edit.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List_Search.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/UserRole_List_Search.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_Edit.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_Edit.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_Edit.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_Edit.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_EditPassword.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_EditPassword.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_EditPassword.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_EditPassword.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_List.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_List.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_List.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_List.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/User_List_Search.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/User_List_Search.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_Edit.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_Edit.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_Edit.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_Edit.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List_Search.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omEmptyTable_List_Search.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_Edit.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_Edit.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_Edit.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_Edit.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List_Search.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/forms/omSourceObjectControlTranslation_List_Search.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/macros/omLinkDatabase.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/macros/omLinkDatabase.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/menus/OASIS-Logger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/menus/OASIS-Logger.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omADODBFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omADODBFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omAPI32FileFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omAPI32FileFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omAPIClipboard.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omAPIClipboard.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omAPISpecialFolders.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omAPISpecialFolders.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omAppSettings.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omAppSettings.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omArrayFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omArrayFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omBankAccountFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omBankAccountFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omBaseClass.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omBaseClass.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omByteArrayFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omByteArrayFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omCollectionFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omCollectionFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omCommandBarFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omCommandBarFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omConnectionString.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omConnectionString.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omControl.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omControl.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omControlFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omControlFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDAOFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDAOFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDatabaseFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDatabaseFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDateFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDateFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDefaultFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDefaultFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDefaults.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDefaults.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDevelopmentFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDevelopmentFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDynamicRecordState.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDynamicRecordState.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omDynamicRecordStateTest.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omDynamicRecordStateTest.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omExcel.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omExcel.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omExcelEngine.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omExcelEngine.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omExcelFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omExcelFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omExportFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omExportFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omExportManager.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omExportManager.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omFTP.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omFTP.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omFileFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omFileFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omFormFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omFormFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omGlobalDeclarations.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omGlobalDeclarations.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omGuidFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omGuidFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omHTML.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omHTML.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omInvoiceFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omInvoiceFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omJSON.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omJSON.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omJsonConverter.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omJsonConverter.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omKernalFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omKernalFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omKeyObject.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omKeyObject.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omKeyValue.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omKeyValue.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omLibraryFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omLibraryFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omLogging.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omLogging.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omLoggingFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omLoggingFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omMSAccessFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omMSAccessFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omObjectFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omObjectFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omOutlook.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omOutlook.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omPDFFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omPDFFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omPictureFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omPictureFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omPrinterSettingsManager.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omPrinterSettingsManager.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omPrinterSettingsManagerFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omPrinterSettingsManagerFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omRecordsetFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omRecordsetFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omReferenceFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omReferenceFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omReportFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omReportFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSQLConnector.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSQLConnector.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSQLConnectorFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSQLConnectorFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSQLDataAdapter.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSQLDataAdapter.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSQLFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSQLFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSQLObject.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSQLObject.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSQLServerFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSQLServerFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSSMAAConnector.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSSMAAConnector.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSSMAConnector_Test.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSSMAConnector_Test.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSeqFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSeqFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSeqItem.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSeqItem.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSourceObject.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSourceObject.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSourceObjectControl.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSourceObjectControl.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omStartup.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omStartup.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omStringFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omStringFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omStringTagFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omStringTagFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omSystemProcessFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omSystemProcessFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omTableConnector.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omTableConnector.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omTableFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omTableFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omTesseractOCR.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omTesseractOCR.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omTimeRange.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omTimeRange.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omTranslationEngine.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omTranslationEngine.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omTranslationEngineFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omTranslationEngineFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omUser.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omUser.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omUserFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omUserFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omUserRole.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omUserRole.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omUser_Edan.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omUser_Edan.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omWordEngine.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omWordEngine.cls -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/modules/omZipFunctions.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/modules/omZipFunctions.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/nav-pane-groups.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/nav-pane-groups.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/project.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_List_Search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_List_Search.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_Select.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_Select.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_Select.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/UserRole_Select.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/User_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/User_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/User_List_Search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/User_List_Search.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/User_Select.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/User_Select.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/User_Select.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/User_Select.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_List_Search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_List_Search.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_Select.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_Select.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_Select.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omEmptyTable_Select.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omLanguagesSourceObjectControls.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omLanguagesSourceObjectControls.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omLanguagesSourceObjectControls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omLanguagesSourceObjectControls.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_List_Search.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_List_Search.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_List_Search.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_List_Search.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_Select.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_Select.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_Select.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslation_Select.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslations_Build.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslations_Build.bas -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslations_Build.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/queries/omSourceObjectControlTranslations_Build.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ConnectionTypes.sql: -------------------------------------------------------------------------------- 1 | CREATE TABLE [SSMAA_ConnectionTypes] ( 2 | [Id] LONG, 3 | [Name] VARCHAR (255) 4 | ) 5 | -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ConnectionTypes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ConnectionTypes.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ODBC_Tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ODBC_Tables.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ODBC_Tables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/SSMAA_ODBC_Tables.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/UserRoles.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/UserRoles.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/UserRoles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/UserRoles.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/Users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/Users.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/Users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/Users.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omControls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omControls.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omControls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omControls.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omEmptyTables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omEmptyTables.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omEmptyTables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omEmptyTables.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omLanguages.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omLanguages.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omLanguages.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omLanguages.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControlTranslations.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControlTranslations.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControlTranslations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControlTranslations.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControls.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControls.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjectControls.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjects.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjects.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSourceObjects.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSysDefaults.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSysDefaults.sql -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSysDefaults.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/tbldefs/omSysDefaults.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/[Content_Types].xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/[Content_Types].xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/_rels/.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/_rels/.rels -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/theme/theme/_rels/themeManager.xml.rels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/theme/theme/_rels/themeManager.xml.rels -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/theme/theme/theme1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/theme/theme/theme1.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/theme/theme/themeManager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/themes/Office Theme/theme/theme/themeManager.xml -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/vbe-project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/vbe-project.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/vbe-references.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/vbe-references.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/vcs-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/vcs-index.json -------------------------------------------------------------------------------- /src/VCS/MicrosoftAccess.accdb.src/vcs-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tailormade-eu/MicrosoftAccess/HEAD/src/VCS/MicrosoftAccess.accdb.src/vcs-options.json --------------------------------------------------------------------------------