Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified access-add-in/AccUnitLoader.accda
Binary file not shown.
2 changes: 1 addition & 1 deletion access-add-in/source/modules/_config_Application.bas
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Option Compare Text
Option Explicit

'Version number
Private Const APPLICATION_VERSION As String = "0.9.400.240320"
Private Const APPLICATION_VERSION As String = "0.9.401.240323"

Private Const APPLICATION_NAME As String = "ACLib AccUnit Loader"
Private Const APPLICATION_FULLNAME As String = "Access Code Library - AccUnit Loader"
Expand Down
8 changes: 4 additions & 4 deletions access-add-in/source/modules/modTypeLibCheck.bas
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ Public Sub CheckAccUnitTypeLibFile(Optional ByVal VBProjectRef As VBProject = No
Dim ExportFile As Boolean
Dim FileFixed As Boolean

If VBProjectRef Is Nothing Then
Set VBProjectRef = CodeVBProject
End If

LibPath = GetAccUnitLibPath(True)
LibFile = LibPath & ACCUNIT_TYPELIB_FILE
FileTools.CreateDirectory LibPath
Expand All @@ -46,10 +50,6 @@ Public Sub CheckAccUnitTypeLibFile(Optional ByVal VBProjectRef As VBProject = No
End If

On Error Resume Next
If VBProjectRef Is Nothing Then
Set VBProjectRef = CodeVBProject
End If

CheckMissingReference VBProjectRef, ReferenceFixed

ReferenceFixed = ReferenceFixed Or FileFixed
Expand Down