Page 1 of 2
New FWH 13.05
Posted: Wed Jun 05, 2013 3:10 pm
by Antonio Linares
Re: New FWH 13.05
Posted: Wed Jun 05, 2013 4:35 pm
by rhlawek
The FWH64 installer is labeled 13.05 on the download page, but the installer is still 13.04. Any chance this can be updated today?
Robb
Re: New FWH 13.05
Posted: Wed Jun 05, 2013 4:57 pm
by Antonio Linares
Already updated, thanks for the reminder!
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 8:49 am
by driessen
Antonio,
I recompiled and relinked my applications with FWH 13.05.
But I got this error :
"Unresolved external symbol: '_HB_FUN_NOTIFY referenced from FiveHMX.lib(Window.obj)'."
Any idea ?
Thanks.
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 9:01 am
by Enrico Maria Giordano
Antonio,
Some notes:
1. You forgot to put in dialog.prg my suggestion regarding cCaption:
replace
Code: Select all
::cCaption = If( cCaption != nil, SubStr( cCaption, 1, Min( Len( cCaption ), 140 ) ), nil )
with
Code: Select all
::cCaption = If( cCaption != nil, Left( cCaption, 140 ), nil )
(there are two places to change).
2. I notice in dialog.ch a new parameter <(oDlg)> passed to TDialog():New() but there are no new parameters for New() method in dialog.prg.
EMG
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 9:07 am
by Enrico Maria Giordano
Antonio,
Sorry, forget the point 2. I compared the wrong files...
EMG
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 9:13 am
by Enrico Maria Giordano
driessen wrote:Antonio,
I recompiled and relinked my applications with FWH 13.05.
But I got this error :
"Unresolved external symbol: '_HB_FUN_NOTIFY referenced from FiveHMX.lib(Window.obj)'."
Any idea ?
Thanks.
I confirm this problem.
EMG
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 9:24 am
by Enrico Maria Giordano
I temporary pacified the error message defining a function
Is it correct or can I have side effects with my applications?
EMG
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 10:22 am
by Antonio Linares
We have published revised versions of FWH and FWH64 13.05
They should be available in 15 mins from now
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 11:34 am
by Enrico Maria Giordano
Thank you Master!
I'm going to test it.
EMG
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 12:12 pm
by nageswaragunupudi
Downloaded the revised build and is working well.
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 12:23 pm
by Enrico Maria Giordano
I confirm.
EMG
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 12:30 pm
by driessen
Antonio,
Thanks a lot for the quick service.
Re: Little corrections on new FWH 13.05
Posted: Thu Jun 06, 2013 1:10 pm
by byte-one
In fivewin.ch the version is the old one:
.... #define FWVERSION "FWH 13.04" ...
In print.ch:
#xcommand PRINT ...... FILE
#xcommand PRINTER (FILE is missing)
Re: New FWH 13.05
Posted: Thu Jun 06, 2013 6:06 pm
by Antonio Linares
Fixed, thanks!