Skip to content

Commit f3c5633

Browse files
committed
v 1.0.1: Fix error when value for database property is Null
1 parent 3b15b0e commit f3c5633

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Ignore Microsoft Access database binary files (Build these from source)
66
*.accda
77
*.accdb
8+
*.accde
89
*.mdb
910

1011
# Ignore database lock files
@@ -21,3 +22,6 @@ vcs-index.json
2122
# Ignore log files generated by the VCS Add-in
2223
# Comment out the following line if you wish to include log files in git.
2324
*.log
25+
26+
# Zip files
27+
*.zip

source/modules/AddInConfiguration.cls

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,9 @@ ExitHere:
253253

254254
HandleErr:
255255
If Err.Number = 3270 Then
256-
PropDb.Containers("Databases").Documents("SummaryInfo").Properties.Append PropDb.CreateProperty(PropertyName, dbText, NewValue)
256+
If Len(NewValue) > 0 Then
257+
PropDb.Containers("Databases").Documents("SummaryInfo").Properties.Append PropDb.CreateProperty(PropertyName, dbText, NewValue)
258+
End If
257259
Resume ExitHere
258260
End If
259261

source/modules/_config_Application.bas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Option Compare Text
1717
Option Explicit
1818

1919
'Version number
20-
Private Const APPLICATION_VERSION As String = "1.0.0.250128"
20+
Private Const APPLICATION_VERSION As String = "1.0.1.250301"
2121

2222
Private Const APPLICATION_NAME As String = "ACLib Access Add-in Builder"
2323
Private Const APPLICATION_FULLNAME As String = "Access-CodeLib - Access Add-in Builder"

source/vcs-options.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Info": {
3-
"AddinVersion": "4.0.37",
3+
"AddinVersion": "4.1.0",
44
"AccessVersion": "16.0 64-bit"
55
},
66
"Options": {

0 commit comments

Comments
 (0)