-
Notifications
You must be signed in to change notification settings - Fork 0
/
VCS_Loader.bas
75 lines (58 loc) · 2.09 KB
/
VCS_Loader.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
Attribute VB_Name = "VCS_Loader"
Option Compare Database
Option Explicit
Public Sub loadVCS(Optional ByVal SourceDirectory As String)
If SourceDirectory = vbNullString Then
SourceDirectory = CurrentProject.Path & "\MSAccess-VCS\"
End If
'check if directory exists! - SourceDirectory could be a file or not exist
On Error GoTo Err_DirCheck
If ((GetAttr(SourceDirectory) And vbDirectory) = vbDirectory) Then
GoTo Fin_DirCheck
Else
'SourceDirectory is not a directory
Err.Raise 60000, "loadVCS", "Source Directory specified is not a directory"
End If
Err_DirCheck:
If Err.Number = 53 Then 'SourceDirectory does not exist
Debug.Print Err.Number & " | " & "File/Directory not found"
Else
Debug.Print Err.Number & " | " & Err.Description
End If
Exit Sub
Fin_DirCheck:
'delete if modules already exist + provide warning of deletion?
On Error GoTo Err_DelHandler
Dim fileName As String
'Use the list of files to import as the list to delete
fileName = Dir$(SourceDirectory & "*.bas")
Do Until Len(fileName) = 0
'strip file type from file name
fileName = Left$(fileName, InStrRev(fileName, ".bas") - 1)
DoCmd.DeleteObject acModule, fileName
fileName = Dir$()
Loop
GoTo Fin_DelHandler
Err_DelHandler:
If Err.Number <> 7874 Then 'is not - can't find object
Debug.Print "WARNING (" & Err.Number & ") | " & Err.Description
End If
Resume Next
Fin_DelHandler:
fileName = vbNullString
'import files from specific dir? or allow user to input their own dir?
On Error GoTo Err_LoadHandler
fileName = Dir$(SourceDirectory & "*.bas")
Do Until Len(fileName) = 0
'strip file type from file name
fileName = Left$(fileName, InStrRev(fileName, ".bas") - 1)
Application.LoadFromText acModule, fileName, SourceDirectory & fileName & ".bas"
fileName = Dir$()
Loop
GoTo Fin_LoadHandler
Err_LoadHandler:
Debug.Print Err.Number & " | " & Err.Description
Resume Next
Fin_LoadHandler:
Debug.Print "Done"
End Sub