topic
stringlengths
1
63
text
stringlengths
1
577k
xHarbour vs Harbour
/m (or -m) From bcb5tool.hlp: [quote:vw2q4wz5]The following list shows the ILINK32 linker options in alphabetical order. Option Description @xxxx Uses the response file xxxx /A:dd Specifies file alignment (backward compatibility switch; use /Af) /Af:nnnn Specifies file alignment; set nnnn in hex or decimal (0x200 ...
xHarbour vs Harbour
Thank you. I tried with /m to no avail. <!-- s:-( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":-(" title="Sad" /><!-- s:-( --> EMG
xHarbour vs Harbour
Enrico, How are you building the EXE ? Are you using a batch file or a make file ? Could you post it here ? thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xHarbour vs Harbour
Antonio, a batch file. Here it is: [code=fw:2r9v5ag4]<div class="fw" id="{CB}" style="font-family: monospace;">SET HARBOURCMD=/a /es2 /gc0 /m /n /q /w3<br />SET INCLUDE=e:\xharbour\include;e:\bcc\include<br />e:\xharbour\harbour %<span style="color: #000000;">1</span><br />SET HARBOURCMD=<br />SET INCLUDE=<br /><span...
xHarbour vs Harbour
Enrico, Please try this: IF EXIST %1.obj e:\bcc\bin\ilink32 c0x32 %1, %1.EXE, %1.MAP @e:\xharbour\xharbour.rsp
xHarbour vs Harbour
Found! Switch /x prevented creation of MAP file. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> Now, I need to know what type of map I must generate: [code=fw:3v34xuxt]<div class="fw" id="{CB}" style="font-family: monospace;"> &nbsp;-M &nbsp; &nbsp; &nbsp; Map with mangl...
xHarbour vs Harbour
Enrico, Why don't you try each of them and compare the results ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xHarbour vs Harbour
A just sent you the maps obtained with -s. Please compare them and let me know. EMG
xHarbour vs Harbour
Enrico, I have just compared them using UltraCompare (comes with UEStudio). if you compare both files there are very little differences. What I have found so far is that these symbols are in xHarbour but they are not in Harbour: [img:quysu23e]https&#58;//bitbucket&#46;org/fivetech/screenshots/downloads/harbxHarbMaps...
xHarbour vs Harbour
Funny thing is that xHarbour seems to have more linked symbols than Harbour, so how is it possible that Harbour EXE is larger ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xHarbour vs Harbour
<!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> EMG
xHarbour vs Harbour
Ok, this is very interesting and may explain many things: The code segments holds the code (not data, just code) and see their sizes: in Harbour: 14CE0A in xHarbour: 10CB5E So that clear means that Harbour has more code into it than xHarbour. Lets compare the amount of data that both use. data segment holds all the...
xHarbour vs Harbour
Antonio, thank you. I just wrote to xHarbour developers mailing-list to know their thoughts about this subject. EMG
xHarbour vs Harbour
Enrico: Harbour links all the codepages modules, unlike xHarbour (like Clipper did) in which you would need to do a REQUEST to link the desired ones. Like the above, I'm pretty sure Harbour links more modules and likely even ones that are not available in xHarbour, which would explain the difference in size for the r...
xHarbour vs Harbour
Thank you for the infos, Luis. EMG
xHarbour vs Harbour
Is there any way to exclude unused module from the Harbour EXE? EMG
xHarbour vs Harbour
Enrico, The simplest way that comes to my mind is implementing some dummy functions for modules that you don't need, so yours get linked in (with no code) and Harbour's ones get not linked in.
xHarbour vs Harbour
Antonio, as I already wrote: [quote:gno8j8mp]No, this is not the cause of the difference. The same sample compiled for console (without FWH) shows: 889.856 bytes with xHarbour and 747.008 bytes with Harbour.[/quote:gno8j8mp] Why? EMG
xHarbour vs Harbour
Enrico, Surely there are functions in FWH that once linked in require more code from Harbour than from xHarbour. Why are you so much worried about the size ? its not so bad and it does not affect the app behavior at all <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xHarbour vs Harbour
Antonio, [quote="Antonio Linares":3at7f0ca]Enrico, Surely there are functions in FWH that once linked in require more code from Harbour than from xHarbour. Why are you so much worried about the size ? its not so bad and it does not affect the app behavior at all <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" ...
xHarbour with SSL/TLS - Master Enrico.
xHarbour with SSL/TLS - Master Enrico. Master Enrico, anything new? xHarbour con SSL / TLS - Master Enrico. Maestro Enrico, ¿algo nuevo? I need to use Office365, with SSL / TLS Necesito usar Office365, con SSL/TLS Many thanks. Muchas gracias. Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
Sorry, I didn't understand your question. Could you be more explicit, please? EMG
xHarbour with SSL/TLS - Master Enrico.
Master Enrico, I need to send emails via Microsoft's Office365 directly from my program. Which library to use TLS and Cryptography: STARTTLS? Do you have a new version of xHarbour that is already possible to send emails via TLS / STARTTLS? Thank you. [url:bek46ays]https&#58;//support&#46;microsoft&#46;com/pt-br/of...
xHarbour with SSL/TLS - Master Enrico.
It would be the configuration: Server: smtp.office365.com Port: 587 Cryptography: STARTTLS Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
Master Enrico, are these the only LIBs for Email control? [code=fw:3fbdyeli]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #000000;">29</span>/<span style="color: #000000;">10</span>/<span style="color: #000000;">2020</span> &nbsp;<span style="color: #000000;">16</span>:<span style...
xHarbour with SSL/TLS - Master Enrico.
Sorry, I can't help you since I cannot make tests. Could you provide me the access data to the server? EMG
xHarbour with SSL/TLS - Master Enrico.
Master Enrico, just create an email account at office365.com. Do you have contact with master Patrick Mast of the xHarbour project? Perhaps, he has some solution to this problem. Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
[quote:2c94t8ep]Master Enrico, just create an email account at office365.com.[/quote:2c94t8ep] Please, create the account yourself and send me the required data. [quote:2c94t8ep]Do you have contact with master Patrick Mast of the xHarbour project? Perhaps, he has some solution to this problem.[/quote:2c94t8ep] What ...
xHarbour with SSL/TLS - Master Enrico.
Ready Enrico. I created a Microsoft account. How do I send the data and password to the master? <!-- m --><a class="postlink" href="https://i.imgur.com/cqiI6TZ.png">https://i.imgur.com/cqiI6TZ.png</a><!-- m --> [img:2507feod]https&#58;//i&#46;imgur&#46;com/cqiI6TZ&#46;png[/img:2507feod] Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
<!-- e --><a href="mailto:e.m.giordano@emagsoftware.it">e.m.giordano@emagsoftware.it</a><!-- e --> EMG
xHarbour with SSL/TLS - Master Enrico.
Example, ejemplo, exemplo con outlook.com de Microsoft. Download: [url:10cyeml5]https&#58;//mega&#46;nz/file/ZY0lCC4b#J087eB2aPhfZiNynwgaEnkwvrPF2P6y7Pifxl_41Qco[/url:10cyeml5] Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
It works! [code=fw:2g1pm8zu]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<span style="color: #000000;">&#40;</span><span style="color: #000000;...
xHarbour with SSL/TLS - Master Enrico.
No funciona. Example complete? Regards.
xHarbour with SSL/TLS - Master Enrico.
The sample is complete and working fine. Of course, you must link tipssl.lib, libssl.lib and libcrypto.lib and put libcrypto-1_1.dll and libssl-1_1.dll in the same directory of the EXE (or in the system directory). EMG
xHarbour with SSL/TLS - Master Enrico.
Seriously? You have my password, send me a test email from your example, please. Does anyone else testify that this example from Mr. Enrico works? Where do I find these updated LIBS? When I post an example, I post complete and working. Thanks. Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
[quote="karinha":2ae3nw8c]Seriously? You have my password, send me a test email from your example, please.[/quote:2ae3nw8c] Done. [quote="karinha":2ae3nw8c]Does anyone else testify that this example from Mr. Enrico works? Where do I find these updated LIBS?[/quote:2ae3nw8c] [url:2ae3nw8c]http&#58;//forums&#46;fivete...
xHarbour with SSL/TLS - Master Enrico.
Ok, many thanks Enrico. Download: 06/12/2020 11:14 57.809.314 Win32OpenSSL-1_1_1h.exe Libs: [code=fw:hp55o9mr]<div class="fw" id="{CB}" style="font-family: monospace;"><br />C:\OPENSSL2\lib<br /><br /><span style="color: #000000;">23</span>/<span style="color: #000000;">09</span>/<span style="color: #000000...
xHarbour with SSL/TLS - Master Enrico.
Please, follow this thread: [url:1in0fszc]http&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=20&t=36588[/url:1in0fszc] EMG
xHarbour with SSL/TLS - Master Enrico.
I can send you the dlls and the libs for xHarbour and BCC 7.40. Please confirm. EMG
xHarbour with SSL/TLS - Master Enrico.
Enrico, que version de xHarbour tengo que usar? Mira: [code=fw:3ifo7200]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Borland <span style="color: #0000ff;">Resource</span> Compiler &nbsp;Version <span style="color: #000000;">5.40</span><br />Copyright <span style="color: #000000;">&#40;</span>c<span ...
xHarbour with SSL/TLS - Master Enrico.
You are probably using the libs for MSC. You have to generate that libs using your C compiler. The syntax is: [code=fw:1q4ezved]<div class="fw" id="{CB}" style="font-family: monospace;">implib -a libssl.lib libssl-1_1.dll<br />implib -a libcrypto.lib libcrypto-1_1.dll</div>[/code:1q4ezved] EMG
xHarbour with SSL/TLS - Master Enrico.
Ok. Thanks. Voy intentar... What a difficulty ... jajajajajajaja. Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
No funciona Enrico. Your example and LIBs. Download: [url:dt9wr8lj]https&#58;//mega&#46;nz/file/hV9w3LBR#t20ppM4t02XyT8ynU6YFld2bNl0Pgi8Zw9cf9nAT158[/url:dt9wr8lj] Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
It works. You just forgot to set the password: [quote:1jgqf72a]LOCAL cPassword := "yourpassword"[/quote:1jgqf72a] And you didn't link the correct libs: [code=fw:1jgqf72a]<div class="fw" id="{CB}" style="font-family: monospace;">tipssl.lib<br />libssl.lib<br />libcrypto.lib</div>[/code:1jgqf72a] And last, where ...
xHarbour with SSL/TLS - Master Enrico.
No funciona Master. Que me falta? Download complete: [url:126ly1bd]https&#58;//mega&#46;nz/file/RI12lbpJ#QAxxb9m5uuDdeDhFgBJTcIy8cissrB-Vhh0gjXmTDNA[/url:126ly1bd] Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
Please, check your password (currently is "xxxxxxxxxxxxx"): [code=fw:378u37y4]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// By Enrico. &nbsp;EMAILOT.PRG - Para OutLook.com</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin...
xHarbour with SSL/TLS - Master Enrico.
Master Enrico, my password is correct. I declare in the PRG, when compiling. I can't put it in the source, so that the whole internet can find out. Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
There is something wrong in one of your libs: This is your lib: [code=fw:2vv9b1m0]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">06</span>/<span style="color: #000000;">12</span>/<span style="color: #000000;">2020</span>  <span style="color: #000000;">15</span>:<span style="co...
xHarbour with SSL/TLS - Master Enrico.
[quote="Enrico Maria Giordano":2mnzcsy3]There is something wrong in one of your libs: This is your lib: [code=fw:2mnzcsy3]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">06</span>/<span style="color: #000000;">12</span>/<span style="color: #000000;">2020</span>  <span style="co...
xHarbour with SSL/TLS - Master Enrico.
I sent libs and dlls. Please confirm the receipt. EMG
xHarbour with SSL/TLS - Master Enrico.
Master Enrico, I give up. Does not work. I do not know the reason. [url:h7474cyt]https&#58;//i&#46;imgur&#46;com/82bEGeJ&#46;png[/url:h7474cyt] [img:h7474cyt]https&#58;//i&#46;imgur&#46;com/82bEGeJ&#46;png[/img:h7474cyt] Thank you for the patience. Regards, saludos.
xHarbour with SSL/TLS - Master Enrico.
No, please. Try my EXE that I just sent you by email. EMG
xHarbour with SSL/TLS - Master Enrico.
No works! Unbelievable. [url:3pwg1kkz]https&#58;//i&#46;imgur&#46;com/nTmVRdW&#46;png[/url:3pwg1kkz] [img:3pwg1kkz]https&#58;//i&#46;imgur&#46;com/nTmVRdW&#46;png[/img:3pwg1kkz] Regards, saludos.
xHarbour x FWPPC
Antonio, do you planned an xharbour build for FWPPC? Thx, Roberto Parisi
xHarbour x FWPPC
Roberto, Actually its not on our plans as xharbour is more complex and heavier than harbour and it will be quite difficult to port it to Pocket PC. Harbour already was complex enough to get ported
xHarbour x FWPPC
But you made the miracle either. <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
xHarbour x FWPPC
Enrico, The main difficulty is that Windows Mobile and Windows PC have many differences and there are many missing functions, so we had to build an intermediate layer to emulate the missing Windows API functions. Besides that, Pocket PC uses unicode, meanwhile Windows PC does not need it. As xharbour has more code on...
xHarbour y reporte de errores del compilador
Queridos colegas y amigos, Escribo particularmente a los usuarios de xHarbour, Tengo dudas de si este tema se trata de un bug de xHarbour o si hay algo que quizá no hago bien al compilar. Tuve muchos problemas al compilar con xharbour 1.2.1, ahora utilizo 1.2.3 y actualicé a la ultima versión 20141206 y funciona muy ...
xHarbour y reporte de errores del compilador
[quote="karinha":vhbpf9ma]Cual és el FLAG de compilación? /M/N ó otro? Saludos.[/quote:vhbpf9ma] Gracias por tu respuesta!!!! Este es el flag: /n /m /es2 /gc1
xHarbour y reporte de errores del compilador
Acá esta funcionando normal con la ultima versión 20141206, mira: [code=fw:15o80m2a]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Echo  .<br /><br />Set hdir=C:\XHB061214<br />Set bcdir=C:\bcc582<br />Set fwhdir=C:\FwH1306<br /><br />@<span style="color: #00C800;">If</span> Exist *.Bak             Del...
xHarbour y reporte de errores del compilador
Cual és el FLAG de compilación? /M/N ó otro? Saludos.
xHarbour y reporte de errores del compilador
Si, utilizo esa versión de xharbour, no se.. tal vez he sobreescrito algo al añadir mis clases de terceros, voy a revisar todo cuidadosamente, pero la verdad no he podido determinar que es lo que hace esto. Gracias por toda tu ayuda <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:)...
xHarbour y reporte de errores del compilador
Prueba a incluir el fichero Errorsys.prg de la version de Fwh que estás usando en el proyecto
xHarbour y reporte de errores del compilador
[quote="cnavarro":3ehfke9m]Prueba a incluir el fichero Errorsys.prg de la version de Fwh que estás usando en el proyecto[/quote:3ehfke9m] Lo hice, pero sin resultados, un post previo lo menciona, compilé junto a mi aplicación el c:\fwh\source\errorsys.prg y nada <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=...
xHarbour y reporte de errores del compilador
El problema esta relacionado con los flags de compilacion, deja solo los /m /n. El errsysw.prg, en tiempo de compilacion, no afecta.
xHarbour y reporte de errores del compilador
Intenta asi: [code=fw:1srek9om]<div class="fw" id="{CB}" style="font-family: monospace;"><br />/m/n/gc0<br />&nbsp;</div>[/code:1srek9om]
xHarbour y reporte de errores del compilador
[quote="karinha":1edolk7d]Intenta asi: [code=fw:1edolk7d]<div class="fw" id="{CB}" style="font-family: monospace;"><br />/m/n/gc0<br /> </div>[/code:1edolk7d][/quote:1edolk7d] Gracias nuevamente, probé y nada <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> sigue igual Sigo hac...
xHarbour y reporte de errores del compilador
Hola, que usas para compilar un CX.BAT y un CX.LNK por ejemplo? muestra el CX.LNK Ejemplo: [code=fw:3foh3gsu]<div class="fw" id="{CB}" style="font-family: monospace;"><br />C:\bcc582\lib\c0w32.Obj &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;+<br />GERAPNFE.Obj, &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &n...
xHarbour y reporte de errores del compilador
Mira se tu carpeta de xHb\bin esta asi: [code=fw:6qb6oo8l]<div class="fw" id="{CB}" style="font-family: monospace;"><br />&nbsp;Carpeta de C:\XHB061214\bin<br /><br /><span style="color: #000000;">10</span>/<span style="color: #000000;">12</span>/<span style="color: #000000;">2014</span> &nbsp;<span style="color: #000...
xHarbour y reporte de errores del compilador
BUILDX.BAT [code=fw:alf8d620]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ECHO OFF<br />CLS<br />ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿<br />ECHO ³ FiveWin <span style="color: #00C800;">for</span> xHarbour <span style="color: #000000;">13.06</span> - Jun...
xHarbour y reporte de errores del compilador
Otro ejemplo, hay un error en C:\FWH..\SAMPLES\TSTBTNBM.PRG [code=fw:293wap3r]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Application<br />===========<br />   Path and <span style="color: #0000ff;">name</span>: <span style="color: #000000;">C</span>:\FWH1306\samples\TSTBTNBM.exe <span style="color:...
xHarbour y reporte de errores del compilador
Muchísimas gracias por tanta ayuda, voy a probar y reporto <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> La verdad aprecio mucho la gran voluntad de ayudar y la respuesta de este maravilloso foro. Gracias João!!!! <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt...
xHarbour y reporte de errores del compilador
Mira, He hecho las pruebas que me pediste y reporta error en el lincado efectivamente indicando la línea, pero el problema es con los errores de COMPILACION. observa...... aqui tienes el tutor04.prg modificado en la linea 38 para dar un error de compilación. [code=fw:xkyktjbl]<div class="fw" id="{CB}" style="font-fa...
xHarbour y reporte de errores del compilador
Mugurosa, Yo creo que necesita un entorno limpio <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: --> Es posible que haya alguna variable de entorno que afecte a un compilador si y a otro no y que sobreescriba las opciones de compilacion por defecto. Es solo una c...
xHarbour y reporte de errores del compilador
No hay problema és la misma cosa: [code=fw:21g0s6xn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Compiling...<br />TESTE.prg<span style="color: #000000;">&#40;</span><span style="color: #000000;">38</span><span style="color: #000000;">&#41;</span> Error E0020 &nbsp;Incomplete statement or unbalanced...
xHarbour y reporte de errores del compilador
No se que es <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> Me pasa en el equipo de mi casa, y en el de mi trabajo EN AMBOS!!! y aparentemente solo a mi <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
xHarbour y reporte de errores del compilador
Hola [quote:1xh3k74z]Hice esta prueba con el fwh 14.11 tal como se extrae del instalador y xHarbour 1.2.3 Intl. (SimpLex) (Build 20141106) El compilador me devuelve: Compiling... tutor04.prg(38) Error E0020 Incomplete statement or unbalanced delimiters xHarbour 1.2.3 Intl. (SimpLex) (Build 20141106) Copyright 1999-201...
xHarbour y reporte de errores del compilador
Gracias por tu respuesta, esa compilacion no es en mi maquina, es un mensaje a mi de Joao
xHarbour y reporte de errores del compilador
Joao, dejame hacer algunas pruebas mas y te comento, creo que ya estoy algo anulado, veremos si a estas horas veo todo mas claro <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) -->
xHarbour y reporte de errores del compilador
Gracias por tu respuesta, voy a verificar, quiza mi estupidez esta en aumento <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> voy a revisar
xHarbour y reporte de errores del compilador
Tu Colocastes esto: [quote:10nn8w48]Hice esta prueba con el fwh 14.11 tal como se extrae del instalador y xHarbour 1.2.3 Intl. (SimpLex) (Build 20141106) El compilador me devuelve: Compiling... tutor04.prg(38) Error E0020 Incomplete statement or unbalanced delimiters xHarbour 1.2.3 Intl. (SimpLex) (Build 20141106) Copy...
xHarbour y reporte de errores del compilador
Si desea más información sobre el compilador cambia esta línea: [code=fw:2gndb8pg]<div class="fw" id="{CB}" style="font-family: monospace;"><br />%hdir%\bin\harbour %<span style="color: #000000;">1</span> /es2/m/n/k/gc0 /i%fwh%\include;%hdir%\include /w2 /p %<span style="color: #000000;">2</span> %<span style="color: ...
xHarbour y reporte de errores del compilador
La respuesta previa a la tuya, estaba dirigida a ti Renomas, disculpa, estoy verificando pero no recibo ninguna línea, sin embargo en esa compilación si, y no me di cuenta, pero creo que se debe a que la copie de compilar otro error diferente, es que he hecho tantas pruebas. ahora lo compilé nuevamente en iguales cond...
xHarbour y reporte de errores del compilador
Muestra tu BUILDX.BAT y tambiém la carpeta de xHarbour como está? Para que yo prueba con el tuyo. saludos.
xHarbour y reporte de errores del compilador
[quote="karinha":1i4uw3p0]Muestra tu BUILDX.BAT Para que yo prueba con el tuyo. saludos.[/quote:1i4uw3p0] Gracias nuevamente!!, me averguenza molestar tanto <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> [code=fw:1i4uw3p0]<div class="fw" id="{CB}" style="font-family: monospac...
xHarbour y reporte de errores del compilador
aquí un link al xhabour tal como esta en mi maquina <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> <!-- m --><a class="postlink" href="https://app.box.com/s/nzh0wrre2i4xefixl5gu">https://app.box.com/s/nzh0wrre2i4xefixl5gu</a><!-- m -->
xHarbour y reporte de errores del compilador
Con tu BUILDX.BAT hay algo errado, sigo investigando... [code=fw:3j0vg6hg]<div class="fw" id="{CB}" style="font-family: monospace;"><br />??????????????????????????????????????????????????????????????????????????????<br />? FiveWin <span style="color: #00C800;">for</span> xHarbour <span style="color: #000000;">14.11</...
xHarbour y reporte de errores del compilador
algo ha cambiado en el compilador con la forma de informar warning y errores, por ello los rediceccionadores son dos ahora > comp.log redirecciona los errores de compilacion a un archivo llamado comp.log, y 2> redirecciona los mensajes de precaucion a warning.log esto en los ficheros bat de la carpeta samples de fwh ...
xHarbour y reporte de errores del compilador
[url=http&#58;//imgur&#46;com/groEMlb:1ojrjqt3][img:1ojrjqt3]http&#58;//i&#46;imgur&#46;com/groEMlb&#46;png[/img:1ojrjqt3][/url:1ojrjqt3] verifica tu buildx.bat por favor con este. nos comentas [code=fw:1ojrjqt3]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ECHO off<br />CLS<br />ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄ...
xHarbour y reporte de errores del compilador
Intenta ahora con este BUILDX.BAT renombre el anterior para BUILDX.OLD [code=fw:2sura5u9]<div class="fw" id="{CB}" style="font-family: monospace;"><br />@ECHO OFF<br />CLS<br />ECHO ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿<br />ECHO ³ FiveWin <span style="color: #00C800;">for</spa...
xHarbour y reporte de errores del compilador
bueno.... que decir.... [b:1iuzxnl5]MUCHISIMAS GRACIAS!!!!!!!!![/b:1iuzxnl5] Compilé el ejemplo tutor04 retirando una de las comillas en una línea utilizando el batch que me envió Joao y voilà : [quote:1iuzxnl5] Compiling... tutor04.prg(37) Error E0002 Unterminated string: '..\bitmaps\16x16\printer.bmp FLAT ;' tutor...
xHarbour+tipos de datos+ado+oracle-VER SOLUCION!!!
A ver: Me encuentro con un gran problema: Cuando hago lo siguiente: [code:2qamzmne] objetoado&#58;AddNew&#40;&#41; objetoado&#58;Fields&#40;"idproducto"&#41;&#58;value&#58;=1234567890 objetoado&#58;Update&#40;&#41; [/code:2qamzmne] No hay problemas. Sin embargo si hago lo mismo pero utilizo un número de longitud may...
xHarbour+tipos de datos+ado+oracle-VER SOLUCION!!!
Hola David, el problema no será por el tipo de dato definido en Oracle y el tamaño de este. xHarbour utiliza los tipos de datos de Clipper. Saludos, Félix
xHarbour+tipos de datos+ado+oracle-VER SOLUCION!!!
[quote="Baxajaun":1m0zoqob]Hola David, el problema no será por el tipo de dato definido en Oracle y el tamaño de este. xHarbour utiliza los tipos de datos de Clipper. Saludos, Félix[/quote:1m0zoqob] Gracias por tu respuesta. El tema ya lo solucioné. Hay una limitación en ADO para el tamaño de los números. Se resuel...
xHarbour.org
Hello, Does anyone know what happened with xHarbour.org? Thanks.
xHarbour.org
What do you mean??? If you ask why the project is so quiet lately, I believe the project is experience a lack of participation from programmers willing to improve what need to be improved.
xHarbour.org
[quote="driessen":1s0yhwgf]Hello, Does anyone know what happened with xHarbour.org? Thanks.[/quote:1s0yhwgf] Nothing special. You can found the latest builds here: [url:1s0yhwgf]http&#58;//www&#46;whosaway&#46;com[/url:1s0yhwgf] EMG
xHarbour.org
[quote="andresreyes_mzt":3qnavn1m]What do you mean??? If you ask why the project is so quiet lately, I believe the project is experience a lack of participation from programmers willing to improve what need to be improved.[/quote:3qnavn1m] Can you be more specific? What exactly needs to be improved? If you could writ...
xHarbour.org
Enrico, maybe you can forward it. For a new visitor this looks like a outdated product. Best regards, Otto
xHarbour.org
Hello Enrico, thank you for your work on xharbour. I am using xHarbour all the time and all is working fine. Sure it would be a good idea to change year 2007 to 2016 on the footer of the internet page and add the information about <!-- m --><a class="postlink" href="http://www.whosaway.com">http://www.whosaway.com</a...