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/ACLibImportWizard.accda
Binary file not shown.
14 changes: 8 additions & 6 deletions access-add-in/Install.vbs
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
const AddInName = "ACLib-Import-Wizard"
const AddInName = "ACLib Import Wizard"
const AddInFileName = "ACLibImportWizard.accda"
const MsgBoxTitle = "Install/Update ACLib-Import-Wizard"

MsgBox "Vor dem Aktualisieren der Add-In-Datei darf das Add-In nicht geladen sein!" & chr(13) & _
"Zur Sicherheit alle Access-Instanzen schlie�en.", , MsgBoxTitle & ": Hinweis"
MsgBox "Before updating the add-in file, the add-in must not be loaded!" & chr(13) & _
"Close all access instances for safety.", , MsgBoxTitle & ": Information"

Select Case MsgBox("Soll das Add-In als ACCDE verwendet werden?" + chr(13) & _
"(Add-In wird kompiliert ins Add-In-Verzeichnis kopiert.)", 3, MsgBoxTitle)
Select Case MsgBox("Should the add-in be used as ACCDE?" + chr(13) & _
"(The compiled Add-In is copied into the Add-In directory.)", 3, MsgBoxTitle)
case 6 ' vbYes
CreateMde GetSourceFileFullName, GetDestFileFullName
MsgBox "Compiled add-in created"
case 7 ' vbNo
FileCopy GetSourceFileFullName, GetDestFileFullName
MsgBox "Add-In file was copied"
case else

End Select
Expand Down Expand Up @@ -59,5 +61,5 @@ Function CreateMde(SourceFilePath, DestFilePath)

Set AccessApp = CreateObject("Access.Application")
AccessApp.SysCmd 603, (SourceFilePath), (DestFilePath)

End Function
Binary file modified source/ACLibImportWizardForm.frm
Binary file not shown.
2 changes: 1 addition & 1 deletion source/codelib/_codelib/addins/shared/CodeModuleReader.cls
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ Private m_RequiredModules As Collection
Private m_RequiredModulesChecked As Boolean

Private Const ERRNUMBER_CHECKDEPENDENCY_NOTRUN As Long = vbObjectError + 5001
Private Const ERRDESCRIPTION_CHECKDEPENDENCY_NOTRUN As String = "CheckDependency wurde noch nicht ausgef�hrt"
Private Const ERRDESCRIPTION_CHECKDEPENDENCY_NOTRUN As String = "CheckDependency has not been executed yet"


'---------------------------------------------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion source/codelib/data/dao/TempDbHandler.cls
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Attribute VB_Exposed = False
' Class: data.dao.TempDbHandler
'---------------------------------------------------------------------------------------
'
' Creates and manages an mdb/accdb for temporary tables
' Creates and manages a database file (mdb/accb) for temporary tables
'
' Author:
' Josef Poetzl
Expand All @@ -24,6 +24,7 @@ Attribute VB_Exposed = False
' <license>_codelib/license.bas</license>
' <use>data/dao/DaoHandler.cls</use>
' <test>_test/data/dao/TempDbHandlerTests.cls</test>
' <description>Creates and manages an database file for temporary tables</description>
'</codelib>
'---------------------------------------------------------------------------------------
'
Expand Down
Loading