-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbas_lib_global_0001.bas
24 lines (24 loc) · 1.13 KB
/
bas_lib_global_0001.bas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
' -----------------------------------------------------------------------
' vbaMyLib Version: 0.1.2 Release Date: 20170123
' © Copyright 2001-2023 Manu Herrán
' Free download source code:
' http://manuherran.com/
' -----------------------------------------------------------------------
Option Explicit
' -----------------------------------------------------------------------
' Tested with Access 2003
' -----------------------------------------------------------------------
' Common global objects
' -----------------------------------------------------------------------
Global GLO_path As String
Global GLO_deploy_mode As Boolean
Global GLO_test_mode As Boolean
Global GLO_time_start As Variant
Global GLO_time_end As Variant
Global GLO_this_app_name As String
Global Const CTE_GLO_office_driver_app_excel As String = "EXCEL"
Global Const CTE_GLO_office_driver_app_access As String = "ACCESS"
Global Const CTE_GLO_office_driver_app_ppt As String = "PPT"
' -----------------------------------------------------------------------
' General global objects
' -----------------------------------------------------------------------