/* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed * with this work for additional information regarding copyright * ownership. The ASF licenses this file to you under the Apache * License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ [STR_FI_NAME_TABELLENDOKUMENT] en-US = "Spreadsheet" [STR_FI_TOOLTIP_CALC] en-US = "Perform calculations, analyze information and manage lists in spreadsheets by using Calc." LTS LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
authorJean-Pierre Ledure <jp@ledure.be>2018-03-22 13:19:35 +0100
committerJean-Pierre Ledure <jp@ledure.be>2018-03-22 13:19:35 +0100
commitfdd3941acfb3e9f4c1775d50210f9811cd179564 (patch)
treeeb79082a1d93a16b217a06289a176969eb91bbf2 /wizards
parent5ca8203ae708504855661a5049084f9e8b5926cf (diff)
Access2Base - Bypass Basic IDE shortcoming
When using an If statement with a continuation character after Then, sometimes breakpoints are desynchronized. Suppress continuation character and add an explicit End If
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/access2base/DoCmd.xba3
1 files changed, 2 insertions, 1 deletions
diff --git a/wizards/source/access2base/DoCmd.xba b/wizards/source/access2base/DoCmd.xba
index 507d864eee7c..2f2e0ae89e5d 100644
--- a/wizards/source/access2base/DoCmd.xba
+++ b/wizards/source/access2base/DoCmd.xba
@@ -365,8 +365,9 @@ Const cstProgressMeterLimit = 100
oOutput._EditMode = dbEditNone
lInputRecs = lInputRecs + 1
If bProgressMeter Then
- If lInputRecs Mod (lInputMax / 100) = 0 Then _
+ If lInputRecs Mod (lInputMax / 100) = 0 Then
Application.SysCmd acSysCmdUpdateMeter, pvNewName &amp; &quot; &quot; &amp; CStr(CLng(lInputRecs * 100 / lInputMax)) &amp; &quot;%&quot;, lInputRecs
+ End If
End If
.MoveNext
Loop