Page 1 of 1

dc_dot function not declared

Posted: Tue Jan 19, 2016 10:40 am
by Cliff Wiernik
I am using the same code for Xbase++ 1.9 and Xbase++ 2.0.

In 1.9, Alt-D brings up dc_dot.

However, in 2.0, it generates the following error. Do I need to do something different to have it locate dc_dot.

Code: Select all

==============================================================================
ERROR LOG of "C:\FCAXBWRK\20262\MAINMENU.EXE" Date: 01/19/2016 11:21:46
------------------------------------------------------------------------------
Xbase++ version     : Xbase++ (R) Version 2.00.656
eXPress++ version   : eXPress++ (c) Version 2.0.263
Operating system    : Windows 10 10.00 Build 10586
Thread ID: 1
User                : CAW
Login Name          : cliffw
Company             : AFI
Version             : (c) 2005-2015 Aqua Finance Inc(6.160118a Build 19.1097)
Database path       : 
Default Directory   : 
Current Directory   : C:\afi\data
------------------------------------------------------------------------------
ERROR OBJECT:
------------------------------------------------------------------------------
oError:args         :
          -> VALTYPE: L VALUE: .T.
oError:canDefault   : N
oError:canRetry     : N
oError:canSubstitute: Y
oError:cargo        : NIL
oError:description  : Function is not declared
oError:filename     : 
oError:genCode      :         21
oError:operation    : DC_DOT
oError:osCode       :          0
oError:severity     :          2
oError:subCode      :       2002
oError:subSystem    : BASE
oError:thread       :          1
oError:tries        :          0
DAC last message    : 
------------------------------------------------------------------------------
CALLSTACK:
------------------------------------------------------------------------------
Called from (B)DC_DOTHOTKEY(11023)
Called from DC_GETLIST:EVENTLOOP(4851)
Called from DC_GETLIST:READGUI(3869)
Called from DC_READGUI(113)
Called from MAINMENU(4432)
Called from MAIN(345)
------------------------------------------------------------------------------
WORKAREA STATUS:
------------------------------------------------------------------------------
 Area Alias         Record         Index        Order      Eof Bof Del Found
------------------------------------------------------------------------------

Re: dc_dot function not declared

Posted: Tue Jan 19, 2016 11:49 am
by rdonnay
Apparently DllLoad('dclip1.dll') must be failing.

This is done in eXpress++ before calling DC_Dot() by macro.

Run Chk4dll dclip1.dll

Re: dc_dot function not declared

Posted: Tue Jan 19, 2016 12:42 pm
by Cliff Wiernik
Thanks.

I had the files there but they must have been the something wrong with them or the wrong version as they were not what was in the exp263\bin20 folder. Copying those version there and it worked properly.

Cliff