diff options
author | Jean-Pierre Ledure <jp@ledure.be> | 2016-12-03 14:11:05 +0100 |
---|---|---|
committer | Jean-Pierre Ledure <jp@ledure.be> | 2017-01-12 11:40:49 +0100 |
commit | 9017bcc76bd27b97c065dacf511f7fcdfe3060cb (patch) | |
tree | 7fb259bc7c5161e856c4c2f93de02e401b05b79b /wizards | |
parent | fa69125cb0239ee9660481fbe2f3200f1d0c53fd (diff) |
Access2Base - Reorder functions in Database module
Change-Id: I62fb5d0722363fdcd7d464d0490b1f6e890221a4
Diffstat (limited to 'wizards')
-rw-r--r-- | wizards/source/access2base/Database.xba | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/wizards/source/access2base/Database.xba b/wizards/source/access2base/Database.xba index 405eb65ae6c1..01c56a70e480 100644 --- a/wizards/source/access2base/Database.xba +++ b/wizards/source/access2base/Database.xba @@ -1221,6 +1221,14 @@ Const cstSQLITE = "SQLite" End Sub ' _LoadMetadata V1.6.0 REM ----------------------------------------------------------------------------------------------------------------------- +Private Function _OutputBinaryToHTML() As String +' Converts Binary value to HTML compatible string + + _OutputBinaryToHTML = "&nbsp;" + +End Function ' _OutputBinaryToHTML V1.4.0 + +REM ----------------------------------------------------------------------------------------------------------------------- Private Function _OutputBooleanToHTML(ByVal pbBool As Boolean) As String ' Converts input boolean value to HTML compatible string @@ -1369,14 +1377,6 @@ Error_Function: End Function ' _OutputDataToHTML V1.4.0 REM ----------------------------------------------------------------------------------------------------------------------- -Private Function _OutputBinaryToHTML() As String -' Converts Binary value to HTML compatible string - - _OutputBinaryToHTML = "&nbsp;" - -End Function ' _OutputBinaryToHTML V1.4.0 - -REM ----------------------------------------------------------------------------------------------------------------------- Private Function _OutputDateToHTML(ByVal psDate As Date) As String ' Converts input date to HTML compatible string |