topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Can we read a massive online directory structure ? | In a Prestashop shopcard, the pictures are saved in a huge amount of directories.
I see more that 4.000 !!! dir/subdirs/subdir/subdir/ .....
The structure must be enormous.
I would like to populate a Xbrowse with the structure and all of it's subdirs, and also the filenames that are into it.
I can then call a Xbro... |
Can we read a massive online directory structure ? | Have you considered using PrestaShop's web service?
You might have it there.
[url:3ubx7hi3]http://doc.prestashop.com/display/PS16/Chapter+9+-+Image+management[/url:3ubx7hi3]
Regards |
Can we read a massive online directory structure ? | Thanks.
I look into it, but If I can get this done by FWH, I can update/upload the files directly from FWH. |
Can we turn off FWDbg ? No .dll found ! | I recently downloaded 10.05. I'm working with an XML transmission and I get an alert that says "FWDbg.dll not found. Impossible to continue".
I assume there is a call to SET RESOURCES TO "FWDbg.dll", and when it can't be found, I get the alert. However, when pressing OK, the code then executes properly.
I cannot... |
Can we turn off FWDbg ? No .dll found ! | Hello Tim,
do you use UeStudio. If so there is a combobox where you can select Release or Debug mode.
Best regards,
Otto |
Can we turn off FWDbg ? No .dll found ! | I use xHarbour xBuilder. Certainly there must be a call to turn off the debugger that I can put into my code, but I cannot find anything in the docs or these forums.
Is their a SET option that can be used in the MAIN( ) program ?
I do have the debugger options un-checked in xBuilder |
Can we turn off FWDbg ? No .dll found ! | Anyone ? Please ? |
Can we turn off FWDbg ? No .dll found ! | Hello Tim,
If you see this alert message, you have some flag of debugging in the compiler (/b). This activates the internal debugger and activates FWDbg. If not found FwDbg.dll then the message appears.
Can you see this dll in dll folder of fwh ? |
Can we turn off FWDbg ? No .dll found ! | I only have default flags set for the compiler, and the link script has all references to debug as .F.
No, the .dll is not in the latest FWH folder ( 10.05 ).
Is there a flag to force it to not debug ? |
Can we turn off FWDbg ? No .dll found ! | Tim,
FWdbg only work fine in Harbour and xHarbour, but not in xH builder. I dont understand why you app start FWDbg if u dont have any flag of debugging. I think that xH builder have their debug. I think that you can have problems using FWDbg. I will try to solve possible bugs in Harbour and xHarbour. I don't use xHa... |
Can we turn off FWDbg ? No .dll found ! | The xBuilder debug options are all OFF. I never had this problem before but now I'm using some new libs. Debug is NOT implemented in any of them. |
Can we turn off FWDbg ? No .dll found ! | Tim,
If you compile for example tutor01.prg , appears the alert message of FWDbg.dll again ? |
Can we turn off FWDbg ? No .dll found ! | Tim,
getting the same error message.
This message comes up, if some debug codes are still in any obj-files when building the project without debug flag.
For me 'Force clean build' turn off this error message <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
Can we turn off FWDbg ? No .dll found ! | Unfortunately Force Rebuild didn't do the job here ... I've tried it a couple of times. I had to remove the error message from the source and link the FWdbg.prg file into my code.
I don't understand why it would even call a file that doesn't exist in the current build ( FWDbg.dll ). Secondly, I never use the debugge... |
Can we turn off FWDbg ? No .dll found ! | Tim,
I'll try to help you but u have to know that i don't use xH builder. I'm thinking that Frank have reason and i think the same. Is posible that you have some obj compiled with a flag /b. Can you delete all obj's and rebuild all your app ? And another question, if you compile with you environment for example tutor0... |
Can we turn off FWDbg ? No .dll found ! | Hiho, I'm having the same problem with UEStudio, I wonder if they found a solution to the case. Grateful |
Can we turn off FWDbg ? No .dll found ! | [img:bdydpe5o]http://www.atzwanger-software.com/fw/uestudio.jpg[/img:bdydpe5o] |
Can we turn off FWDbg ? No .dll found ! | I you have no linenumbers inside your errorlog remove this flag.
Best regards,
Otto
[img:28vzhq1k]http://www.atzwanger-software.com/fw/uestudio2.jpg[/img:28vzhq1k] |
Can we turn off FWDbg ? No .dll found ! | Apart from the question how to turn on or off debug, one important point raised by Mr. Tim is to be answered.
[quote:20l35n0e]I don't understand why it would even call a file that doesn't exist in the current build ( FWDbg.dll ). [/quote:20l35n0e]
I am using FWH borland. I do not have FWHDBG.DLL.
Then why should FWH l... |
Can we turn off FWDbg ? No .dll found ! | Rao,
The FWDBG.DLL is located in FWH\DLL folder. It contains the resources used by the FWH debugger.
If the DLL is getting loaded (or tried to be loaded) then it means that a linked OBJ has been compiled used /B. |
Can we turn off FWDbg ? No .dll found ! | Mr. Antonio
This is the directory listing on my computer ( fwh 10.6 ).
[code=fw:n5997bof]<div class="fw" id="{CB}" style="font-family: monospace;"> Volume in drive C has no label.<br /> Volume Serial Number is 82B7-57D9<br /><br /> Directory <span style="color: #0000ff;">of</span> C:\FWH\dll<br /><br /><span... |
Can we turn off FWDbg ? No .dll found ! | I installed fwh 10.6 once again after deleting c:\fwh folder. Still the \fwh\dll folder does not contain fwdbg.dll.
But I observed a peculiar thing while installing FWH.EXE on my Windows-7 (32 bit ) computer. After installing, this message appeared on the screen:
[url=http://img30.imageshack.us/my.php... |
Can we turn off FWDbg ? No .dll found ! | [quote:hstvb8ii]it means that a linked OBJ has been compiled used /B.[/quote:hstvb8ii]
I suppose it could be that one of the FWH source files was linked with the /B parameter. And perhaps is it only rarely used so it doesn't always generate the error.
James |
Can we turn off FWDbg ? No .dll found ! | Hi friends,
If the program is trying to load the fwdbg.dll, is there any prg module that was compiled with the flag /b. When it is executed generates an internal entry in the debugger module. It's true, we could solve this type of errors simply blocking the message, but this does not mean that every time the system en... |
Can we turn off FWDbg ? No .dll found ! | It might be a 3rd party library. When I reported the problem, the person who gave me the files does not use the /B on any files and was also not using FWH. It may have been a FWH newer version that became sensitive to this problem. I don't use /B and I also have very little in the way of 3rd party files that I don't... |
Can we turn off FWDbg ? No .dll found ! | Tim,
I'm sorry but I don't agree with this assertion. I think that FWDbg is part of FWH, but anyway this is not my decision. Anyway, we must find a solution. You can easily add this line of code and we can see the message which module has the call from the debugger and rebuild it again here if needed.
FWDbg.prg -> li... |
Can we use ActiveX DLL with FW24 | FW,
Can we use ActiveX DLL with FW24. If posible kindly show samples.
Thanks,
Jose |
Can we use ActiveX DLL with FW24 | No, sorry.
ActiveX is 32 bits code and can only be used from FWH and Harbour/xHarbour |
Can we use ActiveX DLL with FW24 | Antonio,
Kindly check if this third party product can be use from FW24. If okay please show samples.
Thank you,
Jose
<!-- m --><a class="postlink" href="https://www.anzio.com/support/documentation/printwiz/Using%20Print%20Wizard%20in%20your%20own%20application.htm">https://www.anzio.com/support/documenta ... cati... |
Can we use ActiveX DLL with FW24 | Jose,
It seems as they provide a 32 bits DLL: printwiz.dll
You can access some 32 bits DLLs from FW 16 bits, but never an ActiveX. Windows does not allow it. |
Can we use ActiveX DLL with FW24 | Antonio,
Just curious. Can we build a dll in XHB that can be accessible from fw24/clipper (16bit) then the XHB dll access an activeX dll.
I am just thinking a way to access activeX from 16bit application.
Thanks for your comments.
Regards,
Jose |
Can we use ActiveX DLL with FW24 | Jose,
We did a similar test to use richedit from 16 bits and it did not work |
Can you implement ADO type 'adGUID' for ADS 12? | can you please expand adofuncs.prg to the type 'adGuid'?
ADS 12 has the new type Guid as database field.
Example:
function FieldTypeAdoToDbf (nType)
do case
case AScan ({} 8,128,129,130,200,201,202,203,204,205, nType)> 0; return 'C'
->
case AScan ({} 8,72,128,129,130,200,201,202,203,204,205, nType)> 0;... |
Can you implement ADO type 'adGUID' for ADS 12? | Thanks
We implemented your suggestion for the next release. |
Can you implement ADO type 'adGUID' for ADS 12? | Thanks
Manfred |
Can you pass a file pattern to cGetFile() | Hi Antonio
I just started trying the cGetFile() function. Looks great but I would like to be able to pass it a filter, For example if I just wanted .dbf files I would like to be able to do something like
[code:9eb2w1fe]sChosenFile := cGetFile( " *.dbf" )[/code:9eb2w1fe]
Is this possible?
Thanks
D... |
Can you pass a file pattern to cGetFile() | Try this:
[code:15a4ymer]cDbf = CGETFILE( "File DBF (*.DBF)|*.DBF", "Apri tabella...", , CURDRIVE() + ":\" + CURDIR() )[/code:15a4ymer]
EMG |
Can you pass a file pattern to cGetFile() | Thanks for the suggestion but it didn't work. Remember we are talking Linux here.
Regards
Doug
(xProgrammer) |
Can you pass a file pattern to cGetFile() | Ops! Sorry.
EMG |
Can you run a RMK file from an exe? | Can you run a RMK file from an exe? If so how? |
Can you run a RMK file from an exe? | Hello Harvey,
The part from the Tools, to create a Exe-File :
F needed, You can call a Editor to check the PRG, before creating a EXE-file
You can find < Angelwriter > in the Main-directory of the Tools.
[code=fw:1gz42x05]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">F... |
Can you use Windows 11 on your PC ? | [url:29kmusr5]https://github.com/rcmaehl/WhyNotWin11/releases/download/2.4.1/WhyNotWin11.exe[/url:29kmusr5]
Please check if you have TPM. No TPMs on the iMacs... |
Can you use Windows 11 on your PC ? | Antonio
I have a Strix ( asus ) Republic of gamers laptop .. I do have TPM 2.0, and have loaded the latest Windows 11 Dev operating system ... with that said .. the latest W11 hardware requirement program :
<!-- m --><a class="postlink" href="https://www.bleepingcomputer.com/news/microsoft/microsoft-pc-health-check-a... |
Can you use Windows 11 on your PC ? | Rick,
[url:2dj1oz4k]https://aka.ms/GetPCHealthCheckApp[/url:2dj1oz4k]
It says that mine (iMac 27 late 2015) is not compatible
> When I ran the above pc-health check ( again ) the i7 processor fails and I have no clue why ... I had no problem doing a fresh install of W11 dev ???
Probably they only check the ... |
Can you use Windows 11 on your PC ? | Intel Macs can run Windows 11 with this workaround <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[url:1v81x0f9]https://appleinsider.com/articles/21/06/25/intel-macs-cant-run-windows-11-without-this-workaround[/url:1v81x0f9] |
Can you use Windows 11 on your PC ? | Rick,
Are you able to install W11 on VirtualBox on Windows 10 ?
[url:14hflvwk]https://www.microsoft.com/en-us/software-download/windowsinsiderpreviewiso[/url:14hflvwk]
I am trying it but it gives a memory error |
Can you use Windows 11 on your PC ? | Antonio
I already have W11 converted from ISO to bootable USB ... I installed Oracle Virtualbox .. I have all the settings set to see the USB ... unfortunately, the Boot order will not see the USB as a boot device ..
The W11 Iso I have is too big to extract to a DVD .. so I unfortunately can not answer your question ... |
Can you use Windows 11 on your PC ? | Rick,
You can directly boot from the W11 ISO on the virtualbox VM |
Can you use Windows 11 on your PC ? | Antonio
No ... I can not boot from the USB to the VM ... The pass-thru for the USB is there, but the USB is not a bootable option in the settings <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Rick |
Can you use Windows 11 on your PC ? | Rick,
W11 installs fine on VirtualBox running it from OSX. It doesn't work from Windows (bootcamp).
Very good! |
Can you use Windows 11 on your PC ? | [url:2n85yui0]https://blogs.oracle.com/virtualization/post/install-microsoft-windows-11-on-virtualbox[/url:2n85yui0] |
Can you use Windows 11 on your PC ? | Running Windows 11 from Windows 10 HyperV:
[img:2gpr7lv1]https://github.com/FiveTechSoft/screenshots/blob/master/W11onW10.JPG?raw=true[/img:2gpr7lv1] |
Can you use Windows 11 on your PC ? | Antonio
For the most part I am running Windows 11 successfully .. no problems with FW applications be it dbf\cdx, ADO or Sql Server .. a couple of things I would like to see Microsoft fix that anoy me immensely .. is the new Right Click on a file or folder ..
[url=http://img4.imagetitan.com/img.php?i... |
Can you use Windows 11 on your PC ? | Thank you Rick! |
Can you use Windows 11 on your PC ? | [quote:37dt95vg]C:\Windows\system32>wsl --install
Installing: Virtual Machine Platform
Virtual Machine Platform has been installed.
Installing: Windows Subsystem for Linux
Windows Subsystem for Linux has been installed.
Downloading: WSL Kernel
Installing: WSL Kernel
WSL Kernel has been installed.
Downloading: GUI App S... |
Can you use a field named End with Class TDataBase ? yes! | Hi all,
Is there an error in database.prg in fwh1811? Check the images below. In the previous version these errors do not occur. Thanks.
[url=https://imgbb.com/:3re4mwuc][img:3re4mwuc]https://i.ibb.co/nbGrTzY/Erro1.jpg[/img:3re4mwuc][/url:3re4mwuc]
prg line:
oArqBol:BAIRRO := oArqAsoc:BAIR... |
Can you use a field named End with Class TDataBase ? yes! | [quote:wzsxq22j]oArqBol:BAIRRO := oArqAsoc:BAIRRO[/quote:wzsxq22j]
para descartar, haria lo siguiente:
[code=fw:wzsxq22j]<div class="fw" id="{CB}" style="font-family: monospace;"><br />?oArqBol:<span style="color: #000000;">cAlias</span>, <span style="color: #0000ff;">select</span><span style="color: #000000;">(</s... |
Can you use a field named End with Class TDataBase ? yes! | Please copy here the error.log thanks |
Can you use a field named End with Class TDataBase ? yes! | [quote="Antonio Linares":2cak3ne8]Please copy here the error.log thanks[/quote:2cak3ne8]
Application
===========
Path and name: D:\SISTEMAS\SINDF\sind.exe (32 bits)
Size: 9,486,848 bytes
Compiler version: xHarbour 1.2.3 Intl. (SimpLex) (Build 20181011)
FiveWin version: FWH 18.11
C compiler version: Bor... |
Can you use a field named End with Class TDataBase ? yes! | [quote="carlos vargas":jvmznqgn][quote:jvmznqgn]oArqBol:BAIRRO := oArqAsoc:BAIRRO[/quote:jvmznqgn]
para descartar, haria lo siguiente:
[code=fw:jvmznqgn]<div class="fw" id="{CB}" style="font-family: monospace;"><br />?oArqBol:<span style="color: #000000;">cAlias</span>, <span style="color: #0000ff;">select</span><span ... |
Can you use a field named End with Class TDataBase ? yes! | Do you have a field named "end" in your DBFs ?
Try to use a different field name |
Can you use a field named End with Class TDataBase ? yes! | [quote="Antonio Linares":1cwit15j]Do you have a field named "end" in your DBFs ?
Try to use a different field name[/quote:1cwit15j]
Yes Antonio, in 10 dbfs.
Database is ending the object with End and not End()? Any other solutions to not have to change the dbfs and prgs?
Thank you! |
Can you use a field named End with Class TDataBase ? yes! | > End and not End()
Inside Harbour there is no difference for them
You can not have a data and a method with the same name, "()" does not matter, it is just a message to the object |
Can you use a field named End with Class TDataBase ? yes! | A workaround would be to remove this method from Class TDataBase:
// METHOD End() INLINE ::Close() |
Can you use a field named End with Class TDataBase ? yes! | It is clear that we can not use oDBf:End to access value of field named "END" or assign new values to oDbf:End.
Sameway you can not have field names that conflict with any methods of datas of TDatabase/
In such cases, we can rename the field temporarily inside the TDatabase object and use the temporary new name to ac... |
Can you use a field named End with Class TDataBase ? yes! | [quote="nageswaragunupudi":292khq0e]It is clear that we can not use oDBf:End to access value of field named "END" or assign new values to oDbf:End.
Sameway you can not have field names that conflict with any methods of datas of TDatabase/
In such cases, we can rename the field temporarily inside the TDatabase object ... |
Can you use a field named End with Class TDataBase ? yes! | [quote="Antonio Linares":1tow2cwc]A workaround would be to remove this method from Class TDataBase:
// METHOD End() INLINE ::Close()[/quote:1tow2cwc]
Great! Thank you Antonio! |
Can you use a field named End with Class TDataBase ? yes! | [quote:2qcqhvp6]Thanks for the explanation. I called it an "error" because in older versions of fivewin this problem doesn't occur. What changed in database.prg for this to happen?
[/quote:2qcqhvp6]
New method End() which is a synonym for Close() was added. |
Can you use a field named End with Class TDataBase ? yes! | [quote="nageswaragunupudi":1rraptzi][quote:1rraptzi]Thanks for the explanation. I called it an "error" because in older versions of fivewin this problem doesn't occur. What changed in database.prg for this to happen?
[/quote:1rraptzi]
New method End() which is a synonym for Close() was added.[/quote:1rraptzi]
Ok, than... |
Can you use a field named End with Class TDataBase ? yes! | [quote:pr04vweb]Thanks for the explanation. I called it an "error" because in older versions of fivewin this problem doesn't occur. What changed in database.prg for this to happen?[/quote:pr04vweb]
Actually, it was a change that I suggested. Prior to that, all of FW's objects could be "destroyed" by calling the End() ... |
Can you use a field named End with Class TDataBase ? yes! | [quote="James Bott":366ckqnc][quote:366ckqnc]Thanks for the explanation. I called it an "error" because in older versions of fivewin this problem doesn't occur. What changed in database.prg for this to happen?[/quote:366ckqnc]
Actually, it was a change that I suggested. Prior to that, all of FW's objects could be "des... |
Can't allocate console | I'm trying to test in my win7 notebook a CGI
Hello.exe CGI
This is source code
[code=fw:2ibo8yyo]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Simpleio.ch"</span><br /><br /><span style="color: #00C800;">FUNCTION</span> MAIN<... |
Can't allocate console | In XP instead it works fine |
Can't allocate console | The problem is solved in this way:
[code=fw:3ug34z9m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Report.ch"</span><br /><br />#... |
Can't build TestRTF sample | I wanted to build the sample testrtf.prg with xHarbour ( Feb ) and FWH 2.7.
I receive the following undefined external symbols:
_GetFileVersionInfoSizeA
_GetFileVersionInfoA
_VerQueryValueA
I am simply trying to build the sample included with 2.7.
What am I missing here ?
Thanks.
Tim <!-- s:) --><img src="{SMIL... |
Can't build TestRTF sample | [quote="TimStone":fyvmsegu]I wanted to build the sample testrtf.prg with xHarbour ( Feb ) and FWH 2.7.
I receive the following undefined external symbols:
_GetFileVersionInfoSizeA
_GetFileVersionInfoA
_VerQueryValueA
I am simply trying to build the sample included with 2.7.
What am I missing here ?
Thanks.
Tim,... |
Can't build TestRTF sample | Thank you ... it now builds. |
Can't compile some fwh\samples using MingW | testfx1.prg, testfx2.prg and testfx3.prg
TIA |
Can't compile some fwh\samples using MingW | testcal.prg and testcal2.prg too |
Can't compile some fwh\samples using MingW | testmex.prg too |
Can't compile some fwh\samples using MingW | testgif.prg too |
Can't compile some fwh\samples using MingW | testcf1.prg too |
Can't compile some fwh\samples using MingW | testsk1.prg too |
Can't compile some fwh\samples using MingW | [quote="hua":1rkgpgj1]testfx1.prg, testfx2.prg and testfx3.prg
TIA[/quote:1rkgpgj1]
Hua,
Fixed, we send you the modified libraries, thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Can't compile some fwh\samples using MingW | Thank you! A big thumbs up to you Antonio <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Can't compile some fwh\samples using MingW | Found another one, testmex.prg can't be build too. Testfx4.prg can be compiled but oFolder:SetLayout() doesn't work. |
Can't compile some fwh\samples using MingW | Testblur.prg can't be compiled. Testblu2.prg compiled and runs fine though.
TIA |
Can't compile some fwh\samples using MingW | Hello
[quote="hua":3c6l31l1]testcal.prg and testcal2.prg too[/quote:3c6l31l1]
fixed
[quote="hua":3c6l31l1]testmex.prg too[/quote:3c6l31l1]
fixed
[quote="hua":3c6l31l1]testgif.prg too[/quote:3c6l31l1]
fixed
[quote="hua":3c6l31l1]testcf1.prg too[/quote:3c6l31l1]
fixed
[quote="hua":3c6l31l1]testsk1.prg too[/quote:3c6... |
Can't compile some fwh\samples using MingW | Hi Daniel. Thank you for the fix. I'm also having trouble compiling skin1.prg and skin2.prg.
Testblur.prg is now compilable after following your instruction. I'll be e-mailing you shortly.
Thank you for the prompt response <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
Can't create dialog Box | Al ejecutar mas de una vez la opción del menu, me aparece el mensaje "Can't create dialog Box".
El programa sigue la siguiente estructura, abro una ventana, desde esta ventana on init abre un dialogo con opciones de menu(botones), al pulsar el boton ventas pido la fecha mediante la funcion MsGet, y despues abro otra ... |
Can't create dialog Box | Biel,
Coge el fichero MsgGet.prg y cambia la linea
[code:1l90h8o2]DEFINE DIALOG oDlg FROM 10, 20 TO 18, 59.5 TITLE cTitle[/code:1l90h8o2]
por
[code:1l90h8o2]DEFINE DIALOG oDlg FROM 10, 20 TO 18, 59.5 TITLE cTitle OF GetWndDefault()[/code:1l90h8o2]
y prueba. Si no va, prueba cambiar GetWndDefault() ... |
Can't create dialog Box | Gracias Carles,
he añadido msgget.prg al proyecto, y antes de hacer el cambio que sujieres, he compilado.
Sin cambiar nada funciona bien, bueno relativamente, porque los tamaños del dialogo no caben en la pantalla del PPC, parece como si fueran los fuentes de la version para PC.
Visto que funciona bien, he ajustado ... |
Can't create dialog Box | Perdon por la intromision, pero cuando dices
"he añadido msgget.prg al proyecto"
¿ a que te refieres exactamente ?
Una saludo y gracias. |
Can't create dialog Box | Biel,
MsgGet() ya está incluido en FWPPC (source\function\fwppc.prg). Estás usando el build más reciente de FWPPC ?
Jose, Javier,
En principio no haría falta añadirlo, ya que FWPPC lo proporciona. |
Can't create dialog Box | Si pero, cuando dicen lo del "proyecto", es que hay alguna forma de incluir varios "prg" en un mismo exe , o se refieren a incluir el codigo en el archivo ".rc" ? |
Can't create dialog Box | Jose, Javier,
Sí, claro, puedes usar tantos PRGs como necesites. samples\buildce.bat sólo usa uno, pero para más de uno puedes usar por el make para Microsoft que se encuentra en makes\fwcemake.zip |
Can't create dialog Box | Hola Antonio,
si ya se que esta incluido, pero me da el problema que cito en el primer mensaje de este post.
Tras la sujerencia de Carles, he añadido "source\function\fwppc.prg" para realizar unos cambios en el fuente. Pero no ha hecho falta, pues con la version source\function\fwppc.prg me funciona bien, solo he aj... |
Can't open dbf with harbour1.1-1from fwh download (solved) | Antonio,
use aaa
?used() // .f.
use aaa via "dbfcdx"
?used() // .f.
Best regards!
Shuming Wang |
Can't open dbf with harbour1.1-1from fwh download (solved) | Shuming,
There must be something wrong in your aaa file or in your computer (not enough read-write privileges for a folder, etc)
Please build fwh/samples/fwbrow.prg and you will see that it works fine with DBFs |
Can't open dbf with harbour1.1-1from fwh download (solved) | Antonio,
the same prg code, fwh2.5 and xhabrour996 do .
But now more than 4 customers phoned us the problem.
Best regards!
Shuming Wang |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.