FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Strange problems since loading FWH 13.07
Posts: 708
Joined: Fri Oct 28, 2005 09:53 AM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 04:14 PM

Thank you, I have found the LIBs and was able to compile and link first application. When loading I got the following error:

Application

Path and name: C:\Winapps\cargo\winfrt.exe (32 bits)
Size: 4,209,664 bytes
Time from start: 0 hours 0 mins 1 secs
Error occurred at: 09/10/2013, 11:12:27
Error description: Error BASE/1003 Variable does not exist: SUPER

Stack Calls

Called from: tget.prg => TGET:DESTROY(536)
Called from: setup.prg => TCOMBOBOX:DESTROY(11061)
Called from: => TWINDOW:HANDLEEVENT(0)
Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT(1729)
Called from: setup.prg => TCOMBOBOX:HANDLEEVENT(10932)
Called from: .\source\classes\WINDOW.PRG => _FWH(3182)
Called from: => DIALOGBOX(0)
Called from: .\source\classes\DIALOG.PRG => TDIALOG:ACTIVATE(270)
Called from: cargo.prg => COMPSELE(1162)
Called from: cargo.prg => MAIN(107)

*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
Posts: 708
Joined: Fri Oct 28, 2005 09:53 AM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 04:37 PM

Hello,

This is what is listed in hb_out.log

Application Internal Error - C:\Winapps\cargo\winfrt.exe
Terminated at: 2013.09.10 11:36:29
Unrecoverable error 9015: Symbol item expected from hb_vmDo()
Called from TDIALOG:ACTIVATE(274) in .\source\classes\DIALOG.PRG
Called from COMPSELE(1162) in cargo.prg
Called from MAIN(107) in cargo.prg

*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 07:29 PM

Darrell,

Due to changes in Harbour, all calls to Super must be converted into ::Super.

It seems as you are using some classes modified by you, as all FWH classes use ::Super

Please let me know what exact PRGs and libraries you are linking. Try not to use any modified class of your own.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 708
Joined: Fri Oct 28, 2005 09:53 AM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 07:40 PM

Thank you Antonio, yes, we downloaded a class from forum some time back related to combobox; I have removed and I am recompiling now.

*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 07:43 PM

Darrell,

It seems as you are using also a modified TGet.prg, please check it, thanks

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 708
Joined: Fri Oct 28, 2005 09:53 AM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 08:17 PM

Hi Antonio,

After removing tcombobox class and related, we now get the following error:

Application Internal Error - C:\Winapps\cargo\winfrt.exe
Terminated at: 2013.09.10 15:15:34
Unrecoverable error 9015: Symbol item expected from hb_vmDo()
Called from TDIALOG:ACTIVATE(274) in .\source\classes\DIALOG.PRG
Called from COMPSELE(1162) in cargo.prg
Called from MAIN(107) in cargo.prg


Application Internal Error - C:\Winapps\cargo\winfrt.exe
Terminated at: 2013.09.10 15:16:40
Unrecoverable error 9015: Symbol item expected from hb_vmDo()
Called from TDIALOG:ACTIVATE(274) in .\source\classes\DIALOG.PRG
Called from COMPSELE(1162) in cargo.prg
Called from MAIN(107) in cargo.prg


*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Strange problems since loading FWH 13.07
Posted: Tue Sep 10, 2013 08:48 PM

Darrell,

That error means that you are using a wrong Harbour/xHarbour, and asuming that you are using a standard, non modified FWH 13.07

As I commented you by email, the easiest is to give me remote access to your computer (using TeamViewer) so I can review your settings personally. Instead of loosing time, let me check it quickly :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 708
Joined: Fri Oct 28, 2005 09:53 AM
Re: Strange problems since loading FWH 13.07
Posted: Wed Sep 11, 2013 03:42 AM

Hi Antonio,

This initial dialog loads but then when user clicks button to continue system exits and creates the hb_out.log

Application Internal Error - C:\Winapps\cargo\winfrt.exe
Terminated at: 2013.09.10 22:35:56
Unrecoverable error 9015: Symbol item expected from hb_vmDo()
Called from TDIALOG:ACTIVATE(274) in .\source\classes\DIALOG.PRG
Called from COMPSELE(1162) in cargo.prg
Called from MAIN(107) in cargo.prg


Here is my compile script:
//-------------------------------------------
set hdir=c:\harbour1212
set bcdir=c:\BORLAND\bcc582

@ECHO Harbour Compiling...
%hdir%\bin\harbour %1 /n /ic:\fwh1212\include;%hdir%\include;%bcdir%\include /w /p %2 %3 >xh.log
echo -O2 -e%1.exe -I%hdir%\include;%bcdir%\include %1.c > b32.bc

@ECHO Borland C Compiler...
%bcdir%\bin\bcc32 -M -c @b32.bc >comp.log
type xh.log

Here is my link script:
//-------------------------------------------
del winfrt.exe

set hdir=c:\harbour1212
set hdirl=c:\harbour1212\lib
set fwh=c:\fwh1212
set bcdir=c:\borland\bcc582

@echo %bcdir%\lib\c0w32.obj + > b32.bc
@echo cargo.obj tget setup.obj ndx.obj contact armlab xlscont cnget dbcode.obj user userprof rate multcurr + >> b32.bc
@echo port.obj arcode.obj apcode.obj event logview + >> b32.bc
@echo relinv.obj post.obj rca custbal xlschk + >> b32.bc
@echo xlso xlso2 xlsoe xlsrev xlssales xlslog xlssum xlscust xlsport xlsunb xlsman xlsops xlsest xlsclose bkgrpt xlsnak nakco bkgrpta bkgrptb airimp impacc ctnrpt ocnacc ubkrpt sales3 logrpt reprpt eafrep unpinv xlsaes bilrpt xlsfwb invrpt invrptf xlsebf xlseaf + >> b32.bc
@echo codes.obj dbtools.obj cfg compnew email hemail amsedi.obj ctsedi wincts cbpedi grid.obj cnamtchk errsysw, + >> b32.bc
@echo winfrt.exe, + >> b32.bc
@echo winfrt.map, + >> b32.bc

@echo %fwh%\lib\FiveH.lib %fwh%\lib\FiveHC.lib + >> b32.bc
@echo %hdirl%\hbwin.lib + >> b32.bc
@echo %hdirl%\gtwin.lib + >> b32.bc
@echo %hdirl%\gtgui.lib + >> b32.bc
@echo %hdirl%\hbrtl.lib + >> b32.bc
@echo %hdirl%\hbvm.lib + >> b32.bc
@echo %hdirl%\hblang.lib + >> b32.bc
@echo %hdirl%\hbmacro.lib + >> b32.bc
@echo %hdirl%\hbrdd.lib + >> b32.bc
@echo %hdirl%\rddntx.lib + >> b32.bc
@echo %hdirl%\rddcdx.lib + >> b32.bc
@echo %hdirl%\rddfpt.lib + >> b32.bc
@echo %hdirl%\hbsix.lib + >> b32.bc
@echo %hdirl%\hbdebug.lib + >> b32.bc
@echo %hdirl%\hbcommon.lib + >> b32.bc
@echo %hdirl%\hbpp.lib + >> b32.bc
@echo %hdirl%\hbcpage.lib + >> b32.bc
@echo %hdirl%\hbcplr.lib + >> b32.bc
@echo %hdirl%\hbct.lib + >> b32.bc
@echo %hdirl%\hbpcre.lib + >> b32.bc
@echo %hdirl%\xhb.lib + >> b32.bc
@echo %hdirl%\hbziparc.lib + >> b32.bc
@echo %hdirl%\hbmzip.lib + >> b32.bc
@echo %hdirl%\hbzlib.lib + >> b32.bc
@echo %hdirl%\minizip.lib + >> b32.bc
@echo %hdirl%\png.lib + >> b32.bc
@echo %hdirl%\hbcurl.lib + >> b32.bc
@echo %hdirl%\hbusrrdd.lib + >> b32.bc
@echo %fwh%\lib\libcurl.lib + >> b32.bc
@echo %hdirl%\rddads.lib + >> b32.bc
@echo %hdirl%\Ace32.lib + >> b32.bc

@echo %bcdir%\lib\cw32.lib + >> b32.bc
@echo %bcdir%\lib\uuid.lib + >> b32.bc
@echo %bcdir%\lib\import32.lib + >> b32.bc
@echo %bcdir%\lib\ws2_32.lib + >> b32.bc
@echo %bcdir%\lib\psdk\odbc32.lib + >> b32.bc
@echo %bcdir%\lib\psdk\nddeapi.lib + >> b32.bc
@echo %bcdir%\lib\psdk\iphlpapi.lib + >> b32.bc
@echo %bcdir%\lib\psdk\msimg32.lib + >> b32.bc
@echo %bcdir%\lib\psdk\psapi.lib + >> b32.bc
@echo %bcdir%\lib\psdk\rasapi32.lib + >> b32.bc
@echo %bcdir%\lib\psdk\gdiplus.lib + >> b32.bc
@echo %bcdir%\lib\psdk\shell32.lib, >> b32.bc

@echo cargo.res >> b32.bc
%bcdir%\bin\ilink32 -Gn -aa -Tpe -s @b32.bc > link.log

*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Strange problems since loading FWH 13.07
Posted: Wed Sep 11, 2013 05:58 AM
Darrell,

Here you are linking a modified TGet:

@echo cargo.obj tget setup.obj ndx.obj contact armlab xlscont cnget dbcode.obj user userprof rate multcurr + >> b32.bc

please remove it and try again

also, I see that you are using FWH 12.12:
set fwh=c:\fwh1212

why ? It should be:

set fwh=c:\fwh1307

Finally, you are using a Harbour placed in this folder:
c:\harbour1212

please go to c:\harbour1212\bin and run Harbour and let me know what version it is, thanks
mine says: Harbour 3.2.0dev (r1306132159)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 708
Joined: Fri Oct 28, 2005 09:53 AM
Re: Strange problems since loading FWH 13.07
Posted: Wed Sep 11, 2013 06:18 AM

Antonio,

Noted, I will adjust accordingly

*~*~*~*~*~*~*~*~*~*
Darrell Ortiz
CDM Software Solutions, Inc.
https://www.cdmsoft.com

Continue the discussion