Skip to content

Commit 0961caa

Browse files
author
joyfullservice
committed
Clarify log file terminology
Could be a little scary for users to see a message that there were "No forms found in this database" when exporting only changed items. 😄
1 parent 3caf4b9 commit 0961caa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Version Control.accda.src/modules/modImportExport.bas

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Public Sub ExportSource(blnFullExport As Boolean)
9090
lngCount = cCategory.Count(Not blnFullExport)
9191
If lngCount = 0 Then
9292
Log.Spacer Options.ShowDebug
93-
Log.Add "No " & LCase(cCategory.Category) & " found in this database.", Options.ShowDebug
93+
Log.Add IIf(blnFullExport, "No ", "No modified ") & LCase(cCategory.Category) & " found in this database.", Options.ShowDebug
9494
Else
9595
' Show category header and clear out any orphaned files.
9696
Log.Spacer Options.ShowDebug

0 commit comments

Comments
 (0)