topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
error + mdi + xbrowse (Solucionado) | Leandro,
Prueba asi:
ACTIVATE WINDOW oWHiCt MAXIMIZED ON RESIZE( oExpBCtra:AdjLeft(), oSplitV:AdjClient(), oSplitV:AdjRight() ) ;
VALID( oBrw:End(), oRsDocfac:close(),oBtn16:enable(),.t. ) |
error + mdi + xbrowse (Solucionado) | When using MDI ChildWindow, closing data, release of fonts/resources, etc should be done in oWndChild:bPostEnd, but NOT in VALID clause or after activate command
Please replace
[code=fw:5uw4o33g]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> oWChild:<span style="color: #000000;">oClient</... |
error + mdi + xbrowse (Solucionado) | Ok voy a hacer las pruebas
Luego comento los resultados. |
error + mdi + xbrowse (Solucionado) | Mr Rao.
Muchas Gracias.... Era la solucion. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
error FWH.905 & xHB.53 | when I linke my sources I will get error
Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"D:\fwh\lib" -LIBPATH:"R:\lib" -LIBPATH:"R:\c_lib" -LIBPATH:"R:\c_lib\win" "t.obj" "FiveHCM.lib" "FiveHMX.lib" "OptG.lib" "xhb.lib" "dbf.lib" "nsx.lib" "ntx.lib" "cdx.lib" "rmdb... |
error FWH.905 & xHB.53 | Kajot,
You have to link this xhb.obj file:
<!-- m --><a class="postlink" href="http://www.fivetechsoft.com/files/xhb.obj">http://www.fivetechsoft.com/files/xhb.obj</a><!-- m -->
and also add this source code in one of your PRGs:
[code=fw:1sqt9bhx]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span s... |
error FWH.905 & xHB.53 | thanks
but, I always have to add it to my source.
best regards
kajot |
error FWH.905 & xHB.53 | Kajot,
Only if you use TActiveX. If not, then PellesC should not try to link it. |
error FWH.905 & xHB.53 | I don't use tActiveX. |
error FWH.905 & xHB.53 | Kajot,
> I don't use tActiveX
Then it seems as a PellesC linker error, as it should not try to link it.
If you make a search for ActiveX in all PRGs you will see that ActiveX only appears in its own class source code. |
error FWH.905 & xHB.53 | I use xBUILDW.EXE , how may I turn off axtivex.lib . |
error - testfld4.prg | when I run \samples\testfld4.exe , testfld5.exe testfld7.exe, ..., I got error
Application
===========
Path and name: S:\samples12\testfld4.exe (32 bits)
Size: 1,823,744 bytes
Time from start: 0 hours 0 mins 0 secs
Error occurred at: 06/05/11, 09:42:43
Error description: Error FiveWin/3 Cannot create ... |
error - testfld4.prg | Working well for me.
Please ensure you are linking testfld4.rc, etc. |
error - testfld4.prg | why in error is
Resource: DLGTEST |
error 0004 local declaration... | I never got it before but since today I have while compiling the following :
"error 0004 local declaration follows executable statement"
the function begins as follows
FUNCTION X (olbx)
local odlg
local noldrec
..... |
error 0004 local declaration... | Check above the function declaration. You probably have some unclosed structure before FUNCTION X. (missing endif ...) |
error 0004 local declaration... | I think you may have a local statement further down in your code. All locals have to be declared before any executable lines. |
error 332 | Buenas Tardes:
Hace un par de días tengo algunos clientes que me estan llamando con el siguiente error
FWDISPBEGI (0) Error no recuperable 332: Desbordamiento de la memoria para matrices/cadenas
FWDISPBEGI 0000
TGETL:DISPBEGIN 0000
TGETL:PAINT 0000
(b)TGET 0000
TGETL:HANDLEEVEN 0000
DIALOGBOXI 0000
TDIALOGL:ACTIVAT... |
error 332 | Leonor,
Tienes que plantearte pasar la aplicación a 32 bits usando FWH y Harbour/xHarbour, ya que el error 332 que te aparece es que no tiene suficiente memoria disponible para cadenas/arrays en 16 bits.
Ten en cuenta que una aplicación de 16 bits en Clipper sólo dispone de 64 Ks para arrays y cadenas y rapidamente p... |
error 332 | Antonio:
Estamos en proceso de migración a Harbour, mientras tanto, qué pista nos podés dar para que "salvemos las papas" por ahora, en pocos meses ya estamos en 32bits.
¿Vos decís que un array determinado se quedó sin espacio para crecer? o el espacio total de arrays es 64k ?
Ya que no tenemos ( o no sabemos como h... |
error 332 | Ricardo,
Si usais muchas variables públicas, una solución es cambiarlas por una única (ó varias) variables tipo array:
public uno, dos, tres, cuatro, cinco, seis
se cambiaría a:
public aVars
y aVars se haría igual a { <valor de uno>, <valor de dos>, ..., etc }
Si generas un error en la aplicación (por ejemplo, e... |
error 667 | Hi! I start getting err 667 in Clipper 5.2 application (there is no FW only objects library), Causeway linker.
OCLONE (0) Unrecoverable error 667: Eval stack fault
please help |
error 667 | Time to migrate to Harbour <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
error 667 | I agree with Antonio.
You'd better migrate to Harbour because Clipper applications are 16-bits and they won't run on the current PC's which are 64-bis. |
error 667 | Hello
Here is the NG help for this error :
---
Explanation: The evaluation stack (containing LOCALs, etc.) and/or
Memvar table has been exceeded, causing an attempt to access a locked VM
segment in near memory.
Action: Some suggestions to resolve this problem are:
1. Decrease the stack or... |
error 667 | 650 Out of stack space
Explanation: stack space is exhausted.
Action: Some suggestions to resolve the problem are:
1. Use STACK or PROCEDURE DEPTH command to instruct the linker to
increase the stack space at link time.
2. check for recursion. Some modifications to the CA-Clipper
... |
error 667 | If you are using a lot of PUBLICs and PRIVATEs, I suggest converting as many as possible to LOCALs.
Regards,
James |
error 9001 | saludos resulta que respalde mi aplicacion a win2003Srv compile y todo bien.
al momento de correr el exe. me marco UNRECOVERABLE ERROR 9001 (ERROR RECOVERY FAILURE) y la aplicacion no se ejecuta!!!
me regreso a mi pc antigua y ahi todo funciona perfecto!!
que sucede?... alguien sabe porque sale este tipo de error?...... |
error 9001 | Comprueba que la carpeta en donde esté la aplicación esté compartida |
error 9001 | Gracias! ya encontre el error. que en realidad es mio.. sucede que al cambiar de maquina copie un archivo de configuracion donde tengo la ruta de mi base de datos y obiamente no era la misma <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: --> perdon..
Gracias... |
error 9001 | Arnulfo,
me alegro que lo hayas solucionado <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
error 9002 | Hola, estoy trabado con este error, que me sale al querer correr la aplicación.... me pueden decir qué es ?" Unrecoverable error 9002: No ERRORBLOCK() for error Called from AYUDA(2) "gracias. |
error 9002 | Usas un errorsysw.prg modificado ó usas el estandard de FWH ?Que código tienes en la línea 2 del módulo ayuda ? |
error 9002 | se me estaba compilando un errorsys modificado que tenía en la carpeta de trabajo, gracias.... Antonio, tenés alguna guía para hacer el paso de clipper a fivewin ? seguramente te lo preguntaron muchas veces.Saludos. |
error 9002 | Mario,Aqui tienes un tutorial de FiveWin que puede ayudarte a comprender los aspectos principales:<!-- w --><a class="postlink" href="http://www.fivetechsoft.com/files/curso.zip">www.fivetechsoft.com/files/curso.zip</a><!-- w --> |
error 9002 | Mario:Yo comence el año pasado y dí unos cuantos palos de ciego. En el foro hay un hilo en el que se hace referencia a unos manuales muy bien estructurados y orientados a los que nos quedamos en Clipper. <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=11562&highlight=manuales">http://... |
error AlphaBlend | Hi, all !
After compilation my programm I got error:
[color=#00BF00:2r560pi0]Error: Unresolved external 'AlphaBlend' refereced fron C:\FWH\LIB\FIVEHC.LIB|BRUSHES[/color:2r560pi0]
what it ? |
error AlphaBlend | Hello Natter
You need include Borland Lib
(borland dir)\lib\psdk\msimg32.lib |
error AlphaBlend | Thank you very much !! |
error BYNAME una solucion Antonio!!!!! | me aparece este error al querer recompilar la libreria de fivewin harbour
dbms.prg(36) Error E0030 Syntax error: "parse error at 'CFILE'"
como lo soluciono |
error BYNAME una solucion Antonio!!!!! | Añade estas líneas al comienzo de ese PRG:
[code:3us1uuzs]
#xtranslate BYNAME <V> [, <VN> ] => ::<V> := <V> [; ::<VN> := <VN> ]
#xtranslate BYNAME <V> DEFAULT <Val> => ::<V> := BYDEFAULT <V>, <Val>
#xtranslate BYNAME <V> IFNONIL => ;
... |
error Compiling fwh2206\samples\FiveDBU.prg | Hello
using buildx.bat
Ari
[code=fw:1j2ccovh]<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;"... |
error Compiling fwh2206\samples\FiveDBU.prg | Hello Ari,
I copied fivedbu.prg from the previous version and this is compiling.
I did a compare and see that in the new version there is much new MariaDB and SQL stuff. Maybe you have to link those libs.
Best regards,
Otto |
error Compiling fwh2206\samples\FiveDBU.prg | Ok Otto
I'm going to check here.
Thank you
Ari |
error Compiling fwh2206\samples\FiveDBU.prg | Dear Ari,
FiveDBU.prg does not work with xHarbour in FWH 22.06, only with Harbour
It has been fixed already to work again with xHarbour for next FWH build |
error Compiling fwh2206\samples\FiveDBU.prg | Okay Antonio
I'm very interested in WebView and automatic html generation. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
Thank you very much
Ari |
error Compiling fwh2206\samples\FiveDBU.prg | Hello,
This code is from here from the forum
[code=fw:3ns0y53j]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> WSServer<span style="color: #000000;">(</span> oWndChild <span style="color: #000000;">)</span><br /><br /> <span style="color: #00C80... |
error Compiling fwh2206\samples\FiveDBU.prg | Dear Ari,
To use such code you have to use Harbour and can't use xHarbour
Our advise is that you migrate to Harbour |
error Compiling fwh2206\samples\FiveDBU.prg | Teacher Antonio,
I have a management system and I've been using xHarbour for many years.
My customers, there are more than 300 companies using my system for more than 25 years.
since:
Clipper-DOS, FiveWin since 1996
I don't even know how hard it will be to move to Harbour. I ask you intend to put these resources t... |
error Compiling fwh2206\samples\FiveDBU.prg | Dear Ari,
We do support xHarbour and we will continue doing it, but for HTML automatic generation and sockets management we need to use threads and xHarbour threads support does not work as expected. It is a serious technical limitation.
The migration to Harbour is really easy. You should have all your apps working w... |
error Compiling fwh2206\samples\FiveDBU.prg | Tanks Antonio
I'm going to download the Harbour and start compiling and see what I can solve, it's going to cause a library conflict.
Ari |
error DTPICKER | Antonio:
Me podria ayudar me esta presentando este error en la classe de Dtpicker.
REDEFINE GET oCCot1 VAR vCot1 ID 100 OF oRenCot PICTURE "@K!" WHEN lValida = .t.
REDEFINE DTPICKER oCCot2 VAR vCot2 ID 101 UPDATE OF oRenCot WHEN lValida = .t.
REDEFINE TMPicker oCCot3 VAR vCot3 ID 102 UPDATE OF oRenCo... |
error DTPICKER | Mario,
Que valor inicial tiene la variable vCot2 ? |
error DTPICKER | [quote="Antonio Linares":2315y49m]Mario,
Que valor inicial tiene la variable vCot2 ?[/quote:2315y49m]
IF lNew
vCot1:=Space(2)
vCot2:=Date()
vCot3:=Time()
vCot4:=0
vCot5:=0
vCot6:=.F.
ELSE
vCot1:=oDDetCot:C_CIA
vCot2:=oDDetCot:D_COTI... |
error DTPICKER | Haz un MsgInfo( oDDetCot:D_COTIZA ) despues de ese IF ... ENDIF y comprueba el valor que tiene oDDetCot:D_COTIZA |
error Excel | Hola. Uso Fivewin Harbour 803
hago esto
oExcel := CREATEOBJECT( "Excel.Application" )
oExcel:WorkBooks:Open( xarchivo )
OEXCEL:DISPLAYALERTS=.F.
oSheet := oExcel:ActiveSheet
y me funciona en todas las PC's... probé en unas 20, 25...
hay un... |
error Excel | Try it.
<!-- m --><a class="postlink" href="http://www.redstarsoft.net/?area=dica-excel-ocx">http://www.redstarsoft.net/?area=dica-excel-ocx</a><!-- m --> <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: --> |
error Excel | Gracias, pero la idea es no tocar mucho el código. Calculo que es algun problema con la instalación de excel. Como explicaba en el post, siempre funciona, salvo en una PC que instalé hace poco. Quisás es alguna librería que falta instalar y bajando algun componente se soluciona todo. Postié para saber si a alguien le h... |
error Excel | He tenido algunos problemas similares, que en unos pcs funciona bien y en otros da error o simplemente se cierra la aplicación y dejando el proceso de excel abierto. La causa en todos los casos ha sido por configuración del idioma del windows y hasta del uso de los signos que se use como separadores de miles y decimale... |
error FW en XP | cuando defino una ventana con un fondo o brush sirve en todos los windows menos en XP, tanto como leyendolo desde dll como directamente con filename, habra una solucion que no sea que me digan "compra la nueva version de fivewin", sera posible mandar un pequeño patche de solo esa clase, gracias |
error FW en XP | Por favor proporciona un pequeño ejemplo autocontenido que reproduzca el error para que podamos probarlo.
Que versión y build usas ? |
error FWH 15.04 with xHarbour.com | Type: C >>>xlink.exe -NOEXPOBJ -MAP -FORCE:MULTIPLE -NOIMPLIB -subsystem:windows -UNMANGLE -LIBPATH:"S:\lib" -LIBPATH:"R:\lib" -LIBPATH:"R:\c_lib" -LIBPATH:"R:\c_lib\win" "t.obj" "S:\lib\send32.lib" "S:\lib\mem32.lib" "png.lib" "FiveHCM.lib" "FiveHMX.lib" "OptG.lib" "xhb.lib" "dbf.lib" "nsx.lib" "ntx.lib" "cdx.lib" "... |
error FWH 15.04 with xHarbour.com | Please try adding these libs
c_lib\Win\gdi32.lib
lib\xHBZIP.lib |
error FWH 15.04 with xHarbour.com | thanks
I have to add
[r:\c_lib\win\gdi32.lib]
[r:\c_lib\win\gdiplus.lib]
[xhbzip.lib]
[xhbzipdll.lib] |
error FWH 15.04 with xHarbour.com | [quote="kajot":pj4edch2]thanks
I have to add
[r:\c_lib\win\gdi32.lib]
[r:\c_lib\win\gdiplus.lib]
[xhbzip.lib]
[xhbzipdll.lib][/quote:pj4edch2]
Thanks for the info.
This can be useful to other xhb com users. |
error FWH 15.04 with xHarbour.com | Hit a wall
My xHarbour.com version does not have a gdiplus.lib
Is it available somewhere ? |
error FWH 15.04 with xHarbour.com | Maybe Kajot can help us here
I am sending him an email |
error FWH 15.04 with xHarbour.com | My very old xhb demo installation on my computer has gdi32.lib
c:\xHB\c_lib\Win\gdi32.lib
Probably any recent demo installation may have gdiplus.lib also.
But my Pelles C installation has both:
c:\Program Files\PellesC\Lib\Win
has both gdi32.lib and gdiplus.lib.
If you installed PellesC you may find them there. |
error FWH 15.04 with xHarbour.com | I use xhb.com and had to add the following
C:\xHb\c_lib\Win\psapi.lib
C:\xHb\c_lib\Win\gdiplus.lib |
error FWH 15.04 with xHarbour.com | Coming back to this !
My application has a build with xHarbour. Right now I have to point it to the FWH 14.12 version and it builds fine, then it runs fine.
I tried doing the build with FWH 15.04 but it wants the two GDI .lib files. When I link them in, the .exe will build. However, when I click on the icon to ... |
error FWH 15.04 with xHarbour.com | Tim,
Please check if a log file is created |
error FWH 15.04 with xHarbour.com | Building with FWH 15.04 and GDI libs.
A trace.log is created with 0 bytes. The executable is ASW92.exe and sometimes there is an ASW92.log created, but not this time.
There are no errors showing.
Building with FWH 14.12 and GDI libs
Same result ... it builds but does not run
Building with FWH 14.12 and NO GDI ... |
error FWH 15.04 with xHarbour.com | Tim,
Could you place a MsgInfo() just at the beginning of your app and check if it is shown ? thanks |
error FWH 15.04 with xHarbour.com | also found in my ErrSysW.prg
hLogo = FWBitMap()
which would make my program crash without warning. Took me awhile to find this one. In the errsysw_.prg supplied by FiveWin I noticed it was replaced with
hLogo = FWLogoBitMap() |
error FWH 15.04 with xHarbour.com | Antonio,
It fails with DEFINE FONT statements. This statement kills it
DEFINE FONT oMfont NAME cSysFont SIZE 0,-12 BOLD
cSysFont is defined as "Segoe UI", but will also fail if using GetSysFont( ) to define cSysFont
Tim |
error FWH 15.04 with xHarbour.com | Tim,
really strange
Could you add this function and try it again ?
function CreateFont()
return nil |
error FWH 15.04 with xHarbour.com | And now we stop at:
DEFINE BRUSH oBrush RESOURCE "SKY"
SKY.bmp is in the resource file ...
Was there another .prg file to be linked in once you started once you started using this library ? |
error FWH 15.04 with xHarbour.com | Tim,
What FWH libraries (the names) are you linking ? |
error FWH 15.04 with xHarbour.com | The same as always with xBuilder ( xHarbour.com )
FIVEHCM 5/2/15 12:03PM
FIVEHMX 5/3/15 05:18PM |
error FWH 15.04 with xHarbour.com | Any progress with this ? |
error FWH 15.04 with xHarbour.com | Tim,
I thought about trying it with xhb.com demo
Haven't you migrated to Visual Studio yet ? |
error FWH 15.04 with xHarbour.com | Antonio,
My primary application is built in parallel with xHarbour Builder ( .com ) and Visual Studio. However, only the xHarbour version is in distribution. This is because there are some issues we have never resolved with backward compatibility and the Windows vesion ( ie. ADS for V7 & 8, plus others ).
My comp... |
error FWH 15.04 with xHarbour.com | tim, can you add this to project, and comment.
[code=fw:23l6anty]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><span style="color: #00D7D7;">#include</span> <hbapi.h><br /><... |
error FWH 15.04 with xHarbour.com | They don't do anything ... |
error FWH 15.04 with xHarbour.com | Tim,
why not asking directly to xHarbour.com?
EMG |
error FWH 15.04 with xHarbour.com | I am using 15.02 with xhb.
I have some other files supplied by Fivewin that I have to add to .xbp file
xhb2.obj
mem32.lib
png.lib
send32.lib |
error FWH 15.04 with xHarbour.com | Gale,
I have xhb.obj but don't see an xhb2.obj anywhere. Where can I find that ?
png.lib we used with Microsoft builds but not previously with xHb. I added it from the Harbour build ... no difference.
The others are already in the build file.
Enrico,
xHarbour.com didn't make a change. That was part of FWH. That... |
error FWH 15.04 with xHarbour.com | Tim,
I am trying to build a simple PRG using xBuildW.exe (demo version) but on this computer I have installed Windows 10
and it seems not to work fine.
Coould you test it on your computer and confirm me that it builds fine for you ?
test.exe.xbp
[code=fw:2vjog7g0]<div class="fw" id="{CB}" style="font-family: monospa... |
error FWH 15.04 with xHarbour.com | As submitted, here is the error log:
[code=fw:1p8yj932]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />Type: <span style="color: #000000;">C</span> >>>xhb.exe -o<span style="color: #ff0000;">"Test.c"</span> -m -n -p -q -gc0 -I<span style="color: #ff0000;">"C:<span style="color: #000000;">\... |
error FWH 15.04 with xHarbour.com | Tim,
Where do you get the error log ? I can't find it here.
It may be a Windows 10 conflict. Not sure about this |
error FWH 15.04 with xHarbour.com | C:\xHb\c_lib\Win\psapi.lib
C:\xHb\c_lib\Win\gdiplus.lib
not link listed in log file . |
error FWH 15.04 with xHarbour.com | Manuel,
have you been able to run Tim's code there and see if it fails with FWH 15.04 ?
thanks |
error FWH 15.04 with xHarbour.com | To make things simpler, I updated to the latest xHarbour ( .com) version / libraries this morning. I still have the same issue.
The program fails when trying to DEFINE FONTs.
This is extracted from my build ( .xbp ) file:
[code=fw:31x22jhs]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />C_OU... |
error FWH 15.04 with xHarbour.com | Otto has png.lib and xhb2.obj supplied by FWH ? These are not in my release. Where can I find them ?
Also, the following warnings are taking place:
xLINK: warning: Symbol 'c:\fwh\lib\FiveHCM.lib(MEM.obj)->_HB_FUN_NEXTMEM previously defined at (xHb2HbFunc.obj)' is multiply defined.
xLINK: warning: Symbol 'c:\fwh\li... |
error FWH 15.04 with xHarbour.com | OK ... so somewhere along the way I was given a file SysFontSize.prg to make FWH work with xHb. Removing that file resolved the problem.
So here is a question about other files currently being linked in, with a FWH source, that may no longer be needed:
xHb2hbFunc.prg This has definitions in conflict with FiveH... |
error FWH 15.04 with xHarbour.com | Tim,
Very good that you found that file and that solved the problem.
[quote:19usmcib]
xHb2hbFunc.prg This has definitions in conflict with FiveHCM.lib
FIVEACTx.prg This has duplicate definitions of functions found in FiveHMXZ.lib
Are either of these needed ?
[/quote:19usmcib]
No. Please remove them. |
error FWH 15.04 with xHarbour.com | How about FWdbg.prg and tMetaFile.prg ? |
error FWH 15.04 with xHarbour.com | Tim,
Always check if those files are in FWH\source\classes\*.prg or in FWH\source\function\*.prg
if they are there, there is no need to link them again, unless you have modified them |
error FWH 15.04 with xHarbour.com | Thanks ... in these cases I think there errors on earlier versions, and we had to make corrections and add in these files ... just never took them out ...
All is better now ... |
error FWH 15.04 with xHarbour.com | very good <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.