topic
stringlengths
1
63
text
stringlengths
1
577k
Build 16.01 Menu Problem
[quote="betoncu":1qaxe464]Build 2 (February 2016)[/quote:1qaxe464] No I get reproduce the problem [url=http://postimage.org/:1qaxe464][img:1qaxe464]http://s7.postimg.org/ygt9xo87f/0001.png[/img:1qaxe464][/url:1qaxe464] [url=http://postimage.org/:1qaxe464][img:1qaxe464]http://s14.postimg.org/xlsznmu0x/0002.png[/img:1qaxe464][/url:1qaxe464]
Build 16.01 Menu Problem
OK I will try to produce a self contained example.
Build 16.01 Menu Problem
Ok, thanks
Build 16.01 Menu Problem
I confirm the problem FWH 16.01 MENUITEMs is different from previous version. I wanted insert image here, but i dont know how to do ! Can any hel me ? I tried to click on IMG button,, and then ?? Suppose my image in on my HD in C:\FWERR\IMAME.JPG What is the correct sintax of ? tks
Build 16.01 Menu Problem
No Consider using a hosting service images I use <!-- m --><a class="postlink" href="http://postimage.org/">http://postimage.org/</a><!-- m --> (free) Upload an image and then select Link for forums (1) -> Copy to Clipboard And paste in your message forum
Build 16.01 Menu Problem
K tks Here is the old release: [url:3so813ku]http&#58;//postimg&#46;org/image/hjul5v8sh/[/url:3so813ku] Heare is the new release: [url:3so813ku]http&#58;//postimg&#46;org/image/gvlqmxa2p/[/url:3so813ku] See the difference ! Hi
Build 16.01 Menu Problem
[quote="Romeo":1xak24n1]K tks Here is the old release: [url:1xak24n1]http&#58;//postimg&#46;org/image/hjul5v8sh/[/url:1xak24n1] Heare is the new release: [url:1xak24n1]http&#58;//postimg&#46;org/image/gvlqmxa2p/[/url:1xak24n1] See the difference ! Hi[/quote:1xak24n1] In postimage.org Instead, use the button [b:1xak24n1]Direct link for Forums (1) -> Copy to Clipboard[/b:1xak24n1] For your problem It can provide a small example? Thanks
Build 16.01 Menu Problem
At the end I have found the problem. This error occurs if I use SET EXACT ON at the beginning of my program
Build 16.01 Menu Problem
Ok, thanks I will review the reason
Build 16.01 Menu Problem
I tested with SET EXACT ON and with SET EXACT OFF I have not found any difference [url=http&#58;//postimage&#46;org/:3rll97e1][img:3rll97e1]http&#58;//s28&#46;postimg&#46;org/3l3rtv9zh/0005&#46;png[/img:3rll97e1][/url:3rll97e1] [url=http&#58;//postimage&#46;org/:3rll97e1][img:3rll97e1]http&#58;//s13&#46;postimg&#46;org/ypwwsihl3/0006&#46;png[/img:3rll97e1][/url:3rll97e1]
Build 16.01 Menu Problem
I have sent a sample below. [code=fw:13cc4ns4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">static</span> oWnd<br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   set exact <span style="color: #0000ff;">on</span><br /><br />   <span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">WINDOW</span> oWnd <span style="color: #0000ff;">FROM</span> <span style="color: #000000;">1</span>, <span style="color: #000000;">5</span> <span style="color: #0000ff;">TO</span> <span style="color: #000000;">20</span>, <span style="color: #000000;">70</span> ;<br />          <span style="color: #0000ff;">TITLE</span> <span style="color: #ff0000;">"Testing Menus"</span> ;<br />          <span style="color: #0000ff;">MDI</span> ;<br />          <span style="color: #0000ff;">MENU</span> BuildMenu<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><br />   SET <span style="color: #0000ff;">MESSAGE</span> <span style="color: #0000ff;">OF</span> oWnd <span style="color: #0000ff;">TO</span> FWVERSION + <span style="color: #ff0000;">" - Menu Management Power"</span> <span style="color: #000000;">2015</span><br /><br />   <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">WINDOW</span> oWnd<br /><br /><span style="color: #00C800;">return</span> <span style="color: #00C800;">nil</span><br /><br /><br /><br /><span style="color: #00C800;">function</span> BuildMenu<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br /><span style="color: #00C800;">local</span> oMenu<br /><br />   <span style="color: #0000ff;">MENU</span> oMenu <span style="color: #000000;">2015</span><br /><br />       <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Sigorta"</span><br />       <span style="color: #0000ff;">MENU</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Poliçe Menüsü-1"</span> <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">1</span><span style="color: #000000;">&#41;</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Poliçe Menüsü-2"</span> <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">2</span><span style="color: #000000;">&#41;</span><br />       <span style="color: #0000ff;">ENDMENU</span><br /><br />       <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Muhasebe"</span><br />       <span style="color: #0000ff;">MENU</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Döviz Kurlar?"</span> <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#41;</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Hesap Plan?"</span>   <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">4</span><span style="color: #000000;">&#41;</span><br />       <span style="color: #0000ff;">ENDMENU</span><br /><br />       <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Hasarlar"</span><br />       <span style="color: #0000ff;">MENU</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Döviz Kurlar?"</span> <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#41;</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Hesap Plan?"</span>   <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">4</span><span style="color: #000000;">&#41;</span><br />       <span style="color: #0000ff;">ENDMENU</span><br /><br />       <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"&Raporlar"</span><br />       <span style="color: #0000ff;">MENU</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Döviz Kurlar?"</span> <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#41;</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Hesap Plan?"</span>   <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">4</span><span style="color: #000000;">&#41;</span><br />       <span style="color: #0000ff;">ENDMENU</span><br /><br />       <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"So&me more"</span><br />       <span style="color: #0000ff;">MENU</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Döviz Kurlar?"</span> <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">3</span><span style="color: #000000;">&#41;</span><br />          <span style="color: #0000ff;">MENUITEM</span> <span style="color: #ff0000;">"Hesap Plan?"</span>   <span style="color: #0000ff;">ACTION</span> <span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">&#40;</span><span style="color: #000000;">4</span><span style="color: #000000;">&#41;</span><br />       <span style="color: #0000ff;">ENDMENU</span><br /><br />   <span style="color: #0000ff;">ENDMENU</span><br /><br /><span style="color: #00C800;">return</span> oMenu<br /> </div>[/code:13cc4ns4]
Build 16.01 Menu Problem
Thanks [url=http&#58;//postimage&#46;org/:1a1ycker][img:1a1ycker]http&#58;//s22&#46;postimg&#46;org/8yfrf4ttt/0007&#46;png[/img:1a1ycker][/url:1a1ycker]
Build 16.01 Menu Problem
Have you run it on Windows XP?
Build 16.01 Menu Problem
Ok, I'll try in XP One moment
Build 16.01 Menu Problem
[quote="betoncu":27hpqpuz]Have you run it on Windows XP?[/quote:27hpqpuz] Yes, you are right In XP with SET EXACT ON, menus fail I will seek a solution
Build 16.01 Menu Problem
The problem is in last change of function cWinVersion Modify in source\classes\pdmenu.prg line 799 [code=fw:2lbwfe6h]<div class="fw" id="{CB}" style="font-family: monospace;"><br />               <span style="color: #00C800;">if</span> Empty<span style="color: #000000;">&#40;</span> hMFont <span style="color: #000000;">&#41;</span> .and. cWinVersion<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <> <span style="color: #ff0000;">"XP"</span><br />                  lHFont     := .F.<br />                  <span style="color: #00C800;">DEFAULT</span> hSysMenuFont := GetFontMenu<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />                  hMFont   := hSysMenuFont<br />                  nHItem   := GetFontHeight<span style="color: #000000;">&#40;</span> hMFont <span style="color: #000000;">&#41;</span><br />               <span style="color: #00C800;">endif</span><br /> </div>[/code:2lbwfe6h] with [code=fw:2lbwfe6h]<div class="fw" id="{CB}" style="font-family: monospace;"><br />               <span style="color: #00C800;">if</span> Empty<span style="color: #000000;">&#40;</span> hMFont <span style="color: #000000;">&#41;</span> .and. ! <span style="color: #ff0000;">"XP"</span> $ cWinVersion<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <span style="color: #B900B9;">//<> "XP"</span><br />                  lHFont     := .F.<br />                  <span style="color: #00C800;">DEFAULT</span> hSysMenuFont := GetFontMenu<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />                  hMFont   := hSysMenuFont<br />                  nHItem   := GetFontHeight<span style="color: #000000;">&#40;</span> hMFont <span style="color: #000000;">&#41;</span><br />               <span style="color: #00C800;">endif</span><br /><br /> </div>[/code:2lbwfe6h] and try appreciate your comments thanks
Build 16.01 Menu Problem
Yes it works now. I think it will be better if we use IsWinXP() function. Since I dont know if you have used cWinVersion()<>"XP" in other prg's of the library I have comment the line 146 in \fwh\source\function\getsysin.prg as a temp solution. [code=fw:1g5unro7]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">//   cVersion += IF( IsWin64(), " 64 ", " 32 " ) + "Bits"</span></div>[/code:1g5unro7] I hope you can find a better solution in next build. Many thanks for your help.
Build 16.01 Menu Problem
Ok, thanks I'll talk to Antonio to see what decision will finally take Regards
Build 2015 OFF TOPIC
Windows 10 support for C++, win32 : <!-- m --><a class="postlink" href="http://channel9.msdn.com/?wt.mc_id=build_hp">http://channel9.msdn.com/?wt.mc_id=build_hp</a><!-- m --> <!-- m --><a class="postlink" href="http://www.windowscentral.com/developers-will-be-able-convert-their-net-win32-apps-windows-store">http://www.windowscentral.com/developer ... dows-store</a><!-- m -->
Build 2017 live OFFTopic
<!-- m --><a class="postlink" href="https://channel9.msdn.com/?wt.mc_id=build_hp">https://channel9.msdn.com/?wt.mc_id=build_hp</a><!-- m --> as subject, live now.
Build Android and iOS apps from Visual Studio
This is great news and I plan to use it to build FiveTouch <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [url:d0jclwnr]http&#58;//xamarin&#46;com/visual-studio[/url:d0jclwnr]
Build DLL
How to build DLL for FWH-Harbour ? Example ? DLL with source code.. Como eu faço para criar DLL de funcoes ?
Build DLL
Ari, Please review this Harbour docs for DLLs development: <!-- m --><a class="postlink" href="http://hyperupload.com/download/02cdd50750/windll.txt.html">http://hyperupload.com/download/02cdd50 ... l.txt.html</a><!-- m -->
Build DLL
I create dll and exe simply with xmate program
Build DLL
Poderia me enviar um email com um exemplo bem pratico ? ARI
Build DLL
Ari, Please review FWH\samples\TestDllP.prg and samples\pcodedll.prg
Build DLL
Gracias eu tenho a Fwh pre release . nao tenho qualquer exemplo. Ari
Build DLL
Ari, Necesitas actualizarte a una versión más reciente de FWH. La versión actual de FWH es la 2.7 Junio 2006.
Build DLL
Acabei de atualizar e deu certo eu recebi a Junho de 2006 agora estou na 2.7 ! <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) --> Ari
Build Error
I have just installed all of the components of FWH and successfuly build Tutor01, Tutor02 etc. in the FWH Samples directory. Now am trying to compile my progams in my development directory and the compile and C++ work fine but the linking seems to fail. Error message: Turbo Incremental Link...... Fatal: Unable to open file 'Fiveh.lib' I have tried including Set Include=path....; set Lib=path...etc. into the bat file but still will not work. Help! (thanks)
Build Error
Never mind...i found the line in the Bat file that needs to have the directory information changed... ..\lib\fiveh.lib must have the FWH actual directory replaced instead of the ".." Ahhhh the little things we love.
Build Error
Greg, Glad to know you solved it <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
Build Error
Hi Antonio I downloaded the libs from the 13/02/2013 and the error does not occur when I compile and link. The error appears to point to this file. /fivewin/source/internal/lnx.c home/colin/fivelinux/lib/libfivec.a(lnx.o): In function `button_press_event': lnx.c:(.text+0xaad): undefined reference to `hb_extIsNil' CODE: SELECT ALL EXPAND VIEW gboolean button_press_event( GtkWidget * hWnd, GdkEventButton * event ) { if( event->button == 1 ) { hb_vmPushSymbol( pFLH ); hb_vmPushNil(); hb_vmPushLong( WM_LBUTTONDOWN ); // nMsg hb_vmPushLong( ( HB_ULONG ) event->y ); // nWParam hb_vmPushLong( ( HB_ULONG ) event->x ); // nLParam hb_vmPushLong( ( HB_ULONG ) gtk_object_get_data( GTK_OBJECT( hWnd ), "WP" ) ); hb_vmFunction( 4 ); } return ! HB_ISNIL( -1 ); // FALSE invokes default behavior Cheers Colin Colin Haig Posts: 213 Joined: Mon Oct 10, 2005 5:10 am
Build Error
Colin, I think that the problem comes from this line: return ! HB_ISNIL( -1 ); // FALSE invokes default behavior If you review Harbour/include/hbapi.h you should have: #define HB_ISNIL( n ) ( hb_param( n, HB_IT_ANY ) == NULL || HB_IS_NIL( hb_param( n, HB_IT_ANY ) ) ) Please check if your hbapi.h has the same, thanks
Build Error
Hi Antonio My hbapi is the same. regards Colin
Build Error
Colin, Could you provide me remote access to your server ? thanks
Build Error
Hello Antonio , I have the same problem fivehc32.lib(RICHEDIT.obj) : error LNK2019: riferimento al simbolo esterno _hb_extIsNil non risolto nella funzione _HB_FUN_RELOA DASRTF FWH 13.3 + HARBOUR + Microsoft Visual Studio 10.0\VC Maurizio
Build Error
Maurizio, You need tu use a more recent Harbour build. Please review this: <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=142467#p142467">viewtopic.php?p=142467#p142467</a><!-- l -->
Build Error - FWH Harbour MSVC
Everything was working fine ... then today happened. I'm building an application within UE Studio, using FWH, Harbour, and MSVC 2010. It has been building fine. Then today I started getting the following error: LINK : fatal error LNK1123: failure during conversion to COFF: file invalid or corrupt If I don't link in the .res file, I dont get the error. However, this same .res file has been fine previously and is built with the Microsoft rc compiler. Has anyone seen this message before ? I looked at the Microsoft info online but it doesn't exactly help to find the right file that is causing the problem. Tim
Build Error - FWH Harbour MSVC
Tim, Are you installed MSVC or use a copy from another install ?? use resource compiler from VC2008, VC2010 not comming with resource compiler. Regards,
Build Error - FWH Harbour MSVC
Tim, Whats the exact command line that you use to call the linker ? You have to pay attention to the "," used
Build Error - FWH Harbour MSVC
Do you have duplicate resources names in multiple resource file linking ? Regards,
Build Error - FWH Harbour MSVC
Tim, this is my link commad and link script to build fine my exe using multiple res file with MSVC2010 LINK @mvc.tmp /subsystem:windows /nologo /FORCE:MULTIPLE /ignore:4006 /NODEFAULTLIB:libc /OUT:"C:\ProyectosFW\Sql_Control\Bin\ControlesHm.EXE" "C:\fuentes\fwhx\sqlcontrol\obj\controles.obj" "C:\fuentes\fwhx\sqlcontrol\obj\GestionReportes.obj" "C:\fuentes\fwhx\sqlcontrol\obj\MySQL_utils.obj" "C:\fuentes\fwhx\sqlcontrol\obj\testxbr3.obj" "C:\fuentes\fwhx\sqlcontrol\obj\dic.obj" "C:\fuentes\fwhx\sqlcontrol\obj\empresas.obj" "C:\fuentes\fwhx\sqlcontrol\obj\procesos.obj" "C:\fuentes\fwhx\sqlcontrol\obj\setbrw.obj" "C:\fuentes\fwhx\sqlcontrol\obj\testfile2.obj" "C:\fuentes\fwhx\sqlcontrol\obj\usuarios.obj" "C:\fuentes\fwhx\sqlcontrol\obj\rpreview1109.obj" "C:\fuentes\fwhx\sqlcontrol\obj\UpdFtp2.obj" "C:\fuentes\fwhx\sqlcontrol\obj\xbrowse1105.obj" "C:\fuentes\fwhx\sqlcontrol\obj\femail.obj" libmysqlm.lib dolphinhm.lib recur32hmvc.lib FiveH32.lib FiveHC32.lib xhb.lib hbrtl.lib hbvm.lib gtgui.lib hblang.lib hbmacro.lib hbrdd.lib hbcpage.lib rddntx.lib rddcdx.lib rddfpt.lib hbsix.lib hbcommon.lib hbpp.lib hbct.lib hbwin.lib hbcplr.lib hbpcre.lib hbmzip.lib minizip.lib hbzlib.lib hbziparc.lib png.lib kernel32.lib user32.lib gdi32.lib winspool.lib comctl32.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib mpr.lib winmm.lib libcpmt.lib oldnames.lib version.lib wsock32.lib msimg32.lib oledlg.lib psapi.lib iphlpapi.lib "C:\fuentes\Librerias\recurlib\Resource\ICONOS.Res" "C:\fuentes\Librerias\recurlib\Resource\recursos.RES" "C:\fuentes\Librerias\recurlib\Resource\testxbr3.RES" "C:\fuentes\fwhx\sqlcontrol\controles.res"
Build Error - FWH Harbour MSVC
RC.exe is actually provided in the Microsoft SDKs and we've used that previously. I will look at the configuration on my older computer to see if maybe there is something different. I did use the same configuration ( and link script ) to build Antonio's DBU and that worked fine. However, it did not use a resource file. Thus I suspect for some reason this resource file build is flawed, although I don't seem to have an issue with it being built. I'll look further into it shortly. Tim
Build Error - FWH Harbour MSVC
Nicanor, Do you have a make file you could send me .... I am using UE Studio and their Build from the project files. It was working fine on my other computer, but not on the new one. Both are WIn 7 machines, but I loaded all of the software fresh on this new one. In some cases that may be a huge advantage because some of the "issues" have gone away. Perhaps an external build file will work better. I'm using Harbour 3.0, FWH 12.04 and Microsoft Visual Studio 2010 with the SDK kit 7.0 Tim
Build Error - FWH Harbour MSVC
this is a makefile sample makefile.mak to build i'm using make from borland. go.bat @echo off c:\devel\c\bcc63\bin\make -fmakefile.mak del bin\*.lib del bin\*.exp and makefile.mak [code=fw:17sr7wnv]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />#Microsoft make sample, <span style="color: #000000;">&#40;</span>c<span style="color: #000000;">&#41;</span> FiveTech Software <span style="color: #000000;">2005</span><br /><br />HBDIR=c:\devel\hb\hb31<br />VCDIR=c:\devel\c\vc2010<br />FWDIR=c:\devel\fwh<br /><br />.SUFFIXES: .prg .c .obj .rc .res<br /><br />controles8.exe : .\resource2\controles.res .\obj\controles.obj .\obj\wbrwlineh_vc.obj .\obj\updftp2.obj .\obj\xbrowse1105.c .\obj\wbrowseh.obj .\obj\dic.obj .\obj\dsay.obj .\obj\empresas.obj .\obj\errsysw.obj .\obj\fastreph.obj .\obj\femail.obj .\obj\fwcal.obj .\obj\gestionreportes.obj .\obj\mysql_utils.obj .\obj\procesos.obj .\obj\quickwin.obj .\obj\rddarray.obj .\obj\recursosn.obj .\obj\sayref.obj .\obj\setbrw.obj .\obj\tcb1007.obj .\obj\tcbrowse.obj .\obj\testfile2.obj .\obj\testxbr3.obj .\obj\tfilexls.obj .\obj\tmultiuse.obj .\obj\tsysinfo.obj .\obj\usuarios.obj .\obj\xlserror.obj .\obj\xlsfunc.obj .\resource2\controles.res<br />&nbsp; &nbsp;echo .\obj\controles.obj .\obj\wbrwlineh_vc.obj .\obj\wbrowseh.obj .\obj\updftp2.obj .\obj\dic.obj .\obj\dsay.obj .\obj\empresas.obj .\obj\errsysw.obj .\obj\fastreph.obj .\obj\femail.obj .\obj\fwcal.obj .\obj\gestionreportes.obj .\obj\mysql_utils.obj .\obj\procesos.obj .\obj\quickwin.obj .\obj\rddarray.obj .\obj\recursosn.obj .\obj\sayref.obj .\obj\setbrw.obj .\obj\tcb1007.obj .\obj\tcbrowse.obj .\obj\testfile2.obj .\obj\testxbr3.obj .\obj\tfilexls.obj .\obj\tmultiuse.obj .\obj\tsysinfo.obj .\obj\usuarios.obj .\obj\xlserror.obj .\obj\xlsfunc.obj > msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\lib\FiveH32.lib $<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\lib\FiveHC32.lib >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\dolphinhm.lib >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\libmysqlm.lib >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\xhb.lib &nbsp; &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbrtl.lib &nbsp; &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbvm.lib &nbsp; &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\gtgui.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hblang.lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbmacro.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbrdd.lib &nbsp; &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\rddntx.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\rddcdx.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\rddfpt.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbsix.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbct.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbdebug.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbcommon.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbpp.lib &nbsp; &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbcpage.lib >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbwin.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbcplr.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\lib\mvc\hbpcre.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\kernel32.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\user32.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\gdi32.lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\winspool.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\comctl32.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\comdlg32.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\advapi32.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\shell32.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\ole32.lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\oleaut32.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\uuid.lib &nbsp; &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\odbc32.lib &nbsp; &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\odbccp32.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\iphlpapi.lib &nbsp;>> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\mpr.lib &nbsp; &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\psapi.lib &nbsp; &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\WinMM.Lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\libcpmt.Lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\libcmt.Lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\OLDNAMES.Lib &nbsp; &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\version.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\wsock32.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\msimg32.lib &nbsp; >> msvc.tmp<br />&nbsp; &nbsp;echo $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib\oledlg.lib &nbsp; >> msvc.tmp<br /><br />&nbsp; &nbsp;<span style="color: #00C800;">IF</span> EXIST .\resource2\controles.res echo .\resource2\controles.res >> msvc.tmp<br /><br />&nbsp; &nbsp;SET LIB=$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\lib<br />&nbsp; &nbsp;$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\bin\link @msvc.tmp /nologo /subsystem:<span style="color: #000000;">windows</span> /force:<span style="color: #000000;">multiple</span> /ignore:<span style="color: #000000;">4006</span> /NODEFAULTLIB:<span style="color: #000000;">libc</span> /OUT:<span style="color: #000000;">bin</span>\controlesHm1.exe > link.log<br /><br />&nbsp; &nbsp;@type link.log<br /># &nbsp; @del test.c<br /># &nbsp; @del one.c<br />&nbsp; &nbsp;@copy msvc.tmp msvc.log<br />&nbsp; &nbsp;@del msvc.tmp<br /># &nbsp; @copy controles.exe .\bin\controles0.exe<br /># &nbsp; @del controles.exe<br /><br /><br />.\obj\controles.c &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\controles.prg<br />.\obj\dic.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\dic.prg<br />.\obj\dsay.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\dsay.prg<br />.\obj\empresas.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\empresas.prg<br />.\obj\errsysw.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\errsysw.prg<br />.\obj\fastreph.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\fastreph.prg<br />.\obj\femail.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\femail.prg<br />.\obj\fwcal.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\fwcal.prg<br />.\obj\gestionreportes.c &nbsp; : .\source\prg\gestionreportes.prg<br />.\obj\mysql_utils.c &nbsp; &nbsp; &nbsp; : .\source\prg\mysql_utils.prg<br />.\obj\procesos.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\procesos.prg<br />.\obj\quickwin.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\quickwin.prg<br />.\obj\rddarray.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\rddarray.prg<br />.\obj\recursosn.c &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\recursosn.prg<br />.\obj\sayref.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\sayref.prg<br />.\obj\setbrw.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\setbrw.prg<br />.\obj\tcb1007.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\tcb1007.prg<br />.\obj\tcbrowse.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\tcbrowse.prg<br />.\obj\testfile2.c &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\testfile2.prg<br />.\obj\testxbr3.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\testxbr3.prg<br />.\obj\tfilexls.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\tfilexls.prg<br />.\obj\tmultiuse.c &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\tmultiuse.prg<br />.\obj\tsysinfo.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\tsysinfo.prg<br />.\obj\usuarios.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\usuarios.prg<br />.\obj\xlserror.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\xlserror.prg<br />.\obj\xlsfunc.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\xlsfunc.prg<br />.\obj\xbrowse1105.c &nbsp; &nbsp; &nbsp; : .\source\prg\xbrowse1105.prg<br />.\obj\wbrowseh.c &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;: .\source\prg\wbrowseh.prg<br />.\obj\wbrwlineh_vc.obj &nbsp; &nbsp;: .\source\c\wbrwlineh_vc.c<br />.\obj\updftp2.obj &nbsp; &nbsp; &nbsp; &nbsp; : .\source\prg\updftp2.c<br />.\resource2\controles.res : .\resource2\controles.rc<br /><br />.c.obj :<br />&nbsp;$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\bin\cl -c -W3 -GA -D__FLAT__ -D_CRT_SECURE_NO_WARNINGS -D__MVC__ -D__HARBOUR__ -I$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\include -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\include -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\sdk\include -Fo$@ $<<br /># $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\bin\cl -c -TP -W3 -GA -D__FLAT__ -D_CRT_SECURE_NO_WARNINGS -D__HARBOUR__ -I$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\include -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\include -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\sdk\include -Fo$@ $<<br /><br />.prg.c :<br />&nbsp; &nbsp;$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\bin\mvc\harbour -o$@ -d__MVC__ $< /n /i$<span style="color: #000000;">&#40;</span>FWDIR<span style="color: #000000;">&#41;</span>\include;$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\include;c:\fuentes\librerias\recurlib\include;c:\tdolphing\include<br /><br />#.c.obj :<br /># &nbsp; $<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\bin\cl -c -TP -W3 -GA -D_CRT_SECURE_NO_WARNINGS -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\include -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\sdk\include -I$<span style="color: #000000;">&#40;</span>HBDIR<span style="color: #000000;">&#41;</span>\include -Fo$@ $<<br /><br />.rc.res:<br />&nbsp; &nbsp;$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\bin\rc -r -d__FLAT__ -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\include -I$<span style="color: #000000;">&#40;</span>VCDIR<span style="color: #000000;">&#41;</span>\sdk\include -Fo$@ $<<br /><br /><br /><br />&nbsp;</div>[/code:17sr7wnv]
Build Error - FWH Harbour MSVC
Tim, The RC file may contain the description of some BITMAPS (or similar resources) that are not found on your PC and that will avoid its creation and the make will stop.
Build Error - FWH Harbour MSVC
This problem was on the new computer, and not the old. So I went to Windows Update, and that downloaded a SR and a number of patches for Visual Studio 2010. Now it is building. Thanks for all the input. It is a real frustration when having to completely load a brand new computer. Tim
Build Error - FWH Harbour MSVC
Tim, Same problem for me when i configured a backup computer, VC and Mingw must be installed and configured properly to build fine. Regards,
Build Error 9.06
Although I don't use Rich Edit, I get the following error when I try a build ( xBuilder, with standard Pelles compiler ) xLINK: error: Unresolved external symbol '_OleUIPasteSpecialA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: error: Unresolved external symbol '_GetFileVersionInfoSizeA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: error: Unresolved external symbol '_GetFileVersionInfoA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: error: Unresolved external symbol '_VerQueryValueA referenced from Fivehcm.lib(RICHEDIT.obj)'. xLINK: fatal error: 4 unresolved external(s). Also, I still need to include xhb.obj and FiveAcTx.prg and I was wondering if they were updated with 9.06.
Build Error 9.06
Tim, I experienced the same problem. Just waiting for a solution. Thanks.
Build Error 9.06
Tim, Michel, You have to link these Windows import libraries that xHB included C compiler (PellesC) should provide: <!-- m --><a class="postlink" href="http://www.fivetechsoft.com/files/oledlg.lib">http://www.fivetechsoft.com/files/oledlg.lib</a><!-- m --> <!-- m --><a class="postlink" href="http://www.fivetechsoft.com/files/version.lib">http://www.fivetechsoft.com/files/version.lib</a><!-- m -->
Build Error 9.06
Antonio, Thanks a lot for your help. Will these libraries be included in the next build ?
Build Error 9.06
Michel, > Will these libraries be included in the next build ? No, as they are Windows import libraries that should be provided with the used C compiler <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Both Borland and Microsoft provide them. PellesC should provide them.
Build Error 9.06
Pelles C provides these libraries in lib\Win folder
Build Error 9.06
Rao, Thanks for the info <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Build Tool Harbour 64
Dear All , I am resuming to FWH environment after 4-5 years. I have to setup newly FWH environment on PC again. So I need your help to know new build tools for Harbour/FWH. I was using xMate to build Harbour source code but, now which is the best build tool for harbour/FWH ? Thanks in advance...! Thanks Shridhar
Build Tool Harbour 64
Use FivEdit <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=29991&start=375#p207168">viewtopic.php?f=3&t=29991&start=375#p207168</a><!-- l --> <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=24025&start=780#p207167">viewtopic.php?f=6&t=24025&start=780#p207167</a><!-- l --> <!-- m --><a class="postlink" href="http://wiki.fivetechsoft.com/doku.php?id=fivedit_instalation">http://wiki.fivetechsoft.com/doku.php?i ... nstalation</a><!-- m -->
Build an import library for xHB commercial
polib /DEF:oledlg.def /OUT:oledlg.lib /MACHINE:X86 remove ".dll" from the def file (first line): [color=red:3uh955d6]OLEDLG instead of OLEDLG.DLL[/color:3uh955d6] OLEDLG.DEF [code:3uh955d6] LIBRARY OLEDLG EXPORTS OleUIAddVerbMenuA @1 ; OleUIAddVerbMenuA OleUIAddVerbMenuW @13 ; OleUIAddVerbMenuW OleUIBusyA @8 ; OleUIBusyA OleUIBusyW @14 ; OleUIBusyW OleUICanConvertOrActivateAs @2 ; OleUICanConvertOrActivateAs OleUIChangeIconA @6 ; OleUIChangeIconA OleUIChangeIconW @15 ; OleUIChangeIconW OleUIChangeSourceA @12 ; OleUIChangeSourceA OleUIChangeSourceW @16 ; OleUIChangeSourceW OleUIConvertA @7 ; OleUIConvertA OleUIConvertW @17 ; OleUIConvertW OleUIEditLinksA @5 ; OleUIEditLinksA OleUIEditLinksW @18 ; OleUIEditLinksW OleUIInsertObjectA @3 ; OleUIInsertObjectA OleUIInsertObjectW @19 ; OleUIInsertObjectW OleUIObjectPropertiesA @11 ; OleUIObjectPropertiesA OleUIObjectPropertiesW @20 ; OleUIObjectPropertiesW OleUIPasteSpecialA @4 ; OleUIPasteSpecialA OleUIPasteSpecialW @21 ; OleUIPasteSpecialW OleUIPromptUserA @10 ; OleUIPromptUserA OleUIPromptUserW @22 ; OleUIPromptUserW OleUIUpdateLinksA @9 ; OleUIUpdateLinksA OleUIUpdateLinksW @23 ; OleUIUpdateLinksW [/code:3uh955d6]
Build error
Hello Antonio , I have this problem fivehc32.lib(RICHEDIT.obj) : error LNK2019: riferimento al simbolo esterno _hb_extIsNil non risolto nella funzione _HB_FUN_RELOA DASRTF FWH 13.3 + HARBOUR + Microsoft Visual Studio 10.0\VC Maurizio <!-- w --><a class="postlink" href="http://www.nipeservice.com">www.nipeservice.com</a><!-- w -->
Build error
Maurizio, Have you recompiled the FWH C files yourself ? You are using Harbour, right ?
Build error
Maurizio, You need a more recent Harbour build. You can download it from here: [url:3308rxn1]https&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour_bcc582_20130228&#46;zip&can=2&q=[/url:3308rxn1]
Build error
Antonio , I use harbour with MSVC where I cann download Harbour for MSVC ? Thanks MAurizio
Build error
Maurizio, What MSVC version do you use ?
Build error
Antonio I use Microsoft Visual Studio 10.0 Maurizio
Build error
Antonio, I download Harbour SVN and recompiled with MSVC 10 , I have the same problem . I use : FWH 13.3 MSVC 10 Harbour 3.2.0dev (Rev. 18920) Maurizo
Build error
Maurizio, Please try this one: [url:1utou2ya]https&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour_msvc_20130328&#46;zip&can=2&q=[/url:1utou2ya] Please double check that you are using the right header files as it is the define HB_ISNIL() what has changed
Build error
Antonio <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> doesn't work , it is for 32 or 64 bit ? error: hbmk2.exe is not a valid Win32 application Maurizio
Build error
Maurizio, You can use the hbmk2.exe contained here: [url:32a2v96l]http&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour_bcc582_20130228&#46;zip&can=2&q=[/url:32a2v96l]
Build error
Antonio , doesn't work all the EXE in bin\ Maurizio
Build error
Maurizio, I had uploaded a 64 bits version by mistake. Here is the right one <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> [url:21fnzidf]http&#58;//code&#46;google&#46;com/p/harbour-and-xharbour-builds/downloads/detail?name=harbour_msvc_20130328_2&#46;zip[/url:21fnzidf]
Build error
thanks Antonio <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> now it works . only for information , What is the difference between your Harbour and that from SVN ? Regards MAurizio
Build error
Maurizio, No differences at all. I simply build it and check that FiveWin works fine with it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Build fails with 13.09 and xHarbour(.com )
I have the latest FWH build, re-downloaded this morning, which is 13.09 ( 2nd Build ). My primary project code builds perfectly usining FWH 13.08 and xHarbour ( .com ) from Summer 2010. Using FWH 13.09, with the EXACT SAME LINK SCRIPT AND CODEBASE ... yields the following errors unresolved externals: xLINK: error: Unresolved external symbol '_HB_FUN_SYSREFRESH referenced from (PRO1000.obj)'. xLINK: error: Unresolved external symbol '_SysRefresh referenced from FiveHCM.lib(WINEXEC.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_LWRUNNING referenced from FiveHMX.lib(ERRSYSW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_WNDHANDLEEVENT referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_SETWNDAPP referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_WINRUN referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_XCHANGEPROC referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_GETWNDAPP referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_DEREGDIALOG referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_CREATETOOLTIP referenced from FiveHMX.lib(WINDOW.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_READBITMAP referenced from FiveHMX.lib(BRUSH.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_DIALOGBOX referenced from FiveHMX.lib(DIALOG.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_DIALOGBOXINDIRECT referenced from FiveHMX.lib(DIALOG.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_CANREGDIALOG referenced from FiveHMX.lib(DIALOG.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_REGDIALOG referenced from FiveHMX.lib(DIALOG.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_RBINSERTBAND referenced from FiveHMX.lib(REBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_INITCOMMONCONTROLSEX referenced from FiveHMX.lib(REBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_SETREBARINFO referenced from FiveHMX.lib(REBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TBADDSEPARATOR referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TBENABLEBUTTON referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TBSETTEXT referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_INITCOMMONCONTROLS referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TBADDBUTTON referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TBADDMENU referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_CREATETLBAR referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TTNSETTEXT referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_HB_FUN_TBGETRECT referenced from FiveHMX.lib(TOOLBAR.obj)'. xLINK: error: Unresolved external symbol '_GetWndProcInstance referenced from FiveHCM.lib(CHANGEPR.obj)'. xLINK: error: Unresolved external symbol '__SetAcceleratorTable referenced from FiveHCM.lib(ACCELERA.obj)'. xLINK: error: Unresolved external symbol '_AnsiToWide referenced from FiveHCM.lib(LISTVIEW.obj)'. xLINK: fatal error: 30 unresolved external(s). Something is missing from the FiveHCM and FiveHMX libs ! Help ? Tim
Build fails with 13.09 and xHarbour(.com )
Antonio provided me with a new build of the libraries and this is now corrected and builds fine with xHarbour. Thank you.
Build fails with 13.09 and xHarbour(.com )
Tim, many thanks to you for your great feedback and help <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Build fails with 13.09 and xHarbour(.com )
Antonio, can I get these LIBs also please? Thanks
Build fails with 13.09 and xHarbour(.com )
Boris, Already sent to your email
Build fails with 13.09 and xHarbour(.com )
Thank you Antonio
Build fails with 13.09 and xHarbour(.com )
Antonio, can I get these LIBs also please? Thanks
Build fails with 13.09 and xHarbour(.com )
Thank you.
Build fails with 13.09 and xHarbour(.com )
Can I also get those libraries please? Thanks. Taavi.
Build fails with 13.09 and xHarbour(.com )
Antonio: I will also like to have those libs. Thank you.
Build version of fivewin libraries on MSVC
What version of visual studio do the FiveHC32.lib and FiveH32.lib libs generate? In this last visual studio 2022 update I noticed strange behavior of my program when running on windows 7. I took all the prgs and .c files from fivewin source and generated the libs with MSVC version 17.2.6 and noticed that these behaviors did not occur again. I don't really know what it is. I think there should be a compilation of the FW libraries as per the visual studio version. I will continue with some tests from now on, it is still early to conclude the possible divergence that may occur.
Build version of fivewin libraries on MSVC
Dear Giovanny, We use Visual Studio Community 2022 > I noticed strange behavior of my program when running on windows 7 Could you please provide details of that "strange behavior" ? What is that ? Doing what ? when ? Please try to be concrete. We are using 17.2.4. Maybe it is something fixed in 17.2.6 Anyhow, once you describe it, we will be able to get conclusions. Does it just happen on Windows 7 ?
Build version of fivewin libraries on MSVC
> We are using 17.2.4. Maybe it is something fixed in 17.2.6 Yes, after this update these behaviors started. It's not a fixed situation, it's random. And only on Windows 7. When I call a function in activex sometimes it takes a while to execute. A strange detail. I'm gonna explain. I have many functions in activex, mainly in chilkat component. When I call tOleAuto for the first time it sometimes takes about 4 seconds where it should be less than 1 second. But this is not a fixed rule, it often doesn't happen the first time and it can happen later too. This does not cause errors. Using webbrowser activex on windows 7 this is more visible, but does not prevent execution. Nor is it on all computers. A client of mine was complaining that this was happening, I decided to generate with Borland just for him and for that equipment that was presenting this. After I updated this computer the behavior stopped. So I tested it again generating in MSVC after I generated the libs in the new version of visual studio and it also stopped. Also test GetProfString on windows 7 with MSVC. Some computers just shut down. More like I said before: It's still early to conclude this behavior. It could be some procedure that I haven't identified yet. My question would be if MSVC libs were generated in very old versions of MSVC. So, this question is ruled out.
Build version of fivewin libraries on MSVC
I cannot be sure this applies, but I have seen some issues arising with Windows 7 and programs built with the latest Visual Studio 2022. I assume the following: 1). Microsoft no longer supports Windows 7, and they are not interested in maintaining backward compatiblility in future versions of Windows. 2). All programs will run fine in Windows 10 & 11, and probably even 8. 3). I had installed an update of my program built with VS 2022 and when placed on a clients Win 7 computer, it simply would not run. He decided to buy a new computer, copied over the files, and it ran perfectly. So we realized the issue was with Windows 7. All future development for Microsoft will focus on Windows 10 & 11, and the build tools will be focused on those OS's. Most of my clients have updated to the newer OS by now, so it is rarely a problem. This reminds me of the major networking changes they made several years ago that disabled many client server systems ( including ADS ). They never provided any way to work around the problems. It also messed with Oracle services. So I do not see them making any changes in the future to accomodate older OS operations.
Build with VSC 2015/2017 from command line
Please look and read this <!-- m --><a class="postlink" href="https://msdn.microsoft.com/en-us/library/bb384838.aspx">https://msdn.microsoft.com/en-us/library/bb384838.aspx</a><!-- m --> <!-- m --><a class="postlink" href="https://msdn.microsoft.com/en-us/library/ms235639.aspx">https://msdn.microsoft.com/en-us/library/ms235639.aspx</a><!-- m --> Last version information from previous page <!-- m --><a class="postlink" href="https://docs.microsoft.com/es-es/cpp/build/walkthrough-compiling-a-native-cpp-program-on-the-command-line">https://docs.microsoft.com/es-es/cpp/bu ... mmand-line</a><!-- m --> Download VSC2017 command line <!-- m --><a class="postlink" href="https://www.visualstudio.com/es/thank-you-downloading-visual-studio/?sku=BuildTools&rel=15">https://www.visualstudio.com/es/thank-y ... ols&rel=15</a><!-- m --> Download VSC2015 <!-- m --><a class="postlink" href="http://go.microsoft.com/fwlink/?LinkId=691126">http://go.microsoft.com/fwlink/?LinkId=691126</a><!-- m -->
Build with Visual Studio 2015 errors
I'm trying to build a project that works in Visual Studio 2013, but I'm using it with VS 2015 Preview. I get the following Unresolved Externals: __iob_func use in hbcplr.lib, hbpp.lib, hbvm.lib, rddcdx.lib, fiveH32.lib, and hbssl.lib _printf used in rddcdx.lib and hbpp.lib _ vacopy used in hbcommon.lib _except_handler4_common in MSVCRTD.lib Obviously I'm missing the link for one or more .lib files to provide these externals. Does anyone have ideas ? Thanks.
Build with Visual Studio 2015 errors
Tim, Try to link msvcrt.lib
Build with Visual Studio 2015 errors
Antonio, That is not it. We were blocking it due to a conflict with another library, but allowing it, performing a Clean and complete rebuild still has all of the same errors. From reading notes on VS 2015, and C++, apparently there are issues with .lib files built with older versions. They are saying the .lib files need to be built with VS 2015 also. You may get some idea of this in the Visual Studio support forum. My guess is that VS 2015 will have a Community version that will be used by many developers here, so perhaps we can get a build of Harbour and FWH libs built with VS 2015. They have made some extensive improvements in CRT functioning which apparently relates to this. Tim
Build with Visual Studio 2015 errors
Antonio, In case you didn't see this before, any chance of getting libs for Harbour / FWH build with MSVC 2015 ? I realize it is "early" but the preview has moved along pretty quickly and the changes are set for the issues we currently see ( as described in my first post in this thread ). I have also confirmed that 2015 will have the Free Community version. Tim
Build with Visual Studio 2015 errors
Tim, I need to install it and test it
Build with Visual Studio 2015 errors
OK ... VS 2015 Preview is available ... no charge, and it's getting close to RTM. Tim
Build with Visual Studio 2015 errors
Tim, Already installed, next, to try it...
Build with Visual Studio 2015 errors
Tim, I already tried it and got the iob_func and printf errors. Not sure how to solve them yet.
Build with Visual Studio 2015 errors
[url:2iyklgml]http&#58;//stackoverflow&#46;com/questions/9085753/winddk-iob-func-redefinition[/url:2iyklgml]
Build with Visual Studio 2015 errors
Antonio, The article I read indicated we need to rebuild all libraries with VC 2015. That would include the Harbour and FWH libraries. [url:1a0xc325]https&#58;//connect&#46;microsoft&#46;com/VisualStudio/feedback/details/1144980/error-lnk2001-unresolved-external-symbol-imp-iob-func[/url:1a0xc325] Tim
Build with Visual Studio 2015 errors
Tim, ok, thanks I will rebuild everything and will try it again <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Build with Visual Studio 2015 errors
Tim, Solved <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> I send you the new libs and Harbour There is a problem in Harbour to be fixed. I have used a workaround in the meantime.