|
1 | | -const AddInName = "ACLib-Import-Wizard" |
| 1 | +const AddInName = "ACLib Import Wizard" |
2 | 2 | const AddInFileName = "ACLibImportWizard.accda" |
3 | 3 | const MsgBoxTitle = "Install/Update ACLib-Import-Wizard" |
4 | 4 |
|
5 | | -MsgBox "Vor dem Aktualisieren der Add-In-Datei darf das Add-In nicht geladen sein!" & chr(13) & _ |
6 | | - "Zur Sicherheit alle Access-Instanzen schließen.", , MsgBoxTitle & ": Hinweis" |
| 5 | +MsgBox "Before updating the add-in file, the add-in must not be loaded!" & chr(13) & _ |
| 6 | + "Close all access instances for safety.", , MsgBoxTitle & ": Information" |
7 | 7 |
|
8 | | -Select Case MsgBox("Soll das Add-In als ACCDE verwendet werden?" + chr(13) & _ |
9 | | - "(Add-In wird kompiliert ins Add-In-Verzeichnis kopiert.)", 3, MsgBoxTitle) |
| 8 | +Select Case MsgBox("Should the add-in be used as ACCDE?" + chr(13) & _ |
| 9 | + "(The compiled Add-In is copied into the Add-In directory.)", 3, MsgBoxTitle) |
10 | 10 | case 6 ' vbYes |
11 | 11 | CreateMde GetSourceFileFullName, GetDestFileFullName |
| 12 | + MsgBox "Compiled add-in created" |
12 | 13 | case 7 ' vbNo |
13 | 14 | FileCopy GetSourceFileFullName, GetDestFileFullName |
| 15 | + MsgBox "Add-In file was copied" |
14 | 16 | case else |
15 | 17 |
|
16 | 18 | End Select |
@@ -59,5 +61,5 @@ Function CreateMde(SourceFilePath, DestFilePath) |
59 | 61 |
|
60 | 62 | Set AccessApp = CreateObject("Access.Application") |
61 | 63 | AccessApp.SysCmd 603, (SourceFilePath), (DestFilePath) |
62 | | - |
| 64 | + |
63 | 65 | End Function |
0 commit comments