summaryrefslogtreecommitdiff
path: root/wizards
diff options
context:
space:
mode:
Diffstat (limited to 'wizards')
-rw-r--r--wizards/source/access2base/Recordset.xba2
1 files changed, 1 insertions, 1 deletions
diff --git a/wizards/source/access2base/Recordset.xba b/wizards/source/access2base/Recordset.xba
index 88a029190a27..094bba000d7b 100644
--- a/wizards/source/access2base/Recordset.xba
+++ b/wizards/source/access2base/Recordset.xba
@@ -608,7 +608,7 @@ Dim vMatrix() As Variant, lSize As Long, iNumFields As Integer, i As Integer
Do While Not _EOF And lSize < pvNumRows - 1
lSize = lSize + 1
For i = 0 To iNumFields
- vMatrix(i, lSize) = _getResultSetColumnValue(RowSet, i + 1)
+ vMatrix(i, lSize) = Utils._getResultSetColumnValue(RowSet, i + 1)
If pbStrDate And IsDate(vMatrix(i, lSize)) Then vMatrix(i, lSize) = _CStr(vMatrix(i, lSize))
Next i
_Move("NEXT")