Skip to content

Commit c8d460b

Browse files
committed
add add-in components, change license for add-in from MIT to GPL
1 parent 47fbe1d commit c8d460b

26 files changed

+7127
-27
lines changed

LICENSE

Lines changed: 674 additions & 21 deletions
Large diffs are not rendered by default.

source/dbs-properties.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"Type": 3
8282
},
8383
"Name": {
84-
"Value": "rel:ACLibDeclarationDictCore.accda",
84+
"Value": "rel:ACLibDeclarationDict.accda",
8585
"Type": 12
8686
},
8787
"NavPane Category": {
@@ -156,6 +156,10 @@
156156
"Value": true,
157157
"Type": 1
158158
},
159+
"StartUpForm": {
160+
"Value": "InstallAddInForm",
161+
"Type": 10
162+
},
159163
"StartUpShowDBWindow": {
160164
"Value": true,
161165
"Type": 1

source/forms/DeclarationDictApiDialog.cls

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,12 @@ End Property
2222

2323
Private Sub Form_Load()
2424

25-
Me.Caption = DeclDictAddInName & " " & ChrW(&H2022) & " Differences"
26-
Me.lblVersionInfo.Caption = DeclDictAddInName & " " & ChrW(&H2022) & " Version " & DeclDictVersion
25+
With CurrentApplication
26+
Me.Caption = .ApplicationName & " " & ChrW(&H2022) & " Differences"
27+
Me.lblVersionInfo.Caption = .ApplicationFullName & " " & ChrW(&H2022) & " Version " & CurrentApplication.Version
28+
End With
2729

28-
SetApiDialogMode
30+
SetApiDialogMode
2931

3032
End Sub
3133

0 commit comments

Comments
 (0)