topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
App Termination and Relaunch. | Dear Byron,
You may try:
ShellExecute( 0, "open", "yourapp.exe" )
__Quit() |
App Termination and Relaunch. | Yes, in Windows programming, you can terminate your application and then immediately relaunch it. There are several ways to achieve this, but one common approach is to use the `ShellExecute` function or the `CreateProcess` function to start a new instance of your application from within your existing application. Here'... |
App Termination and Relaunch. | You can also achieve the termination and relaunch of your application using a batch file in Windows. Here's a simple example of how you can create a batch file to do this:
1. Create a text file with a `.bat` extension, such as `restart_my_app.bat`.
2. Edit the batch file using a text editor like Notepad, and add the ... |
App Termination and Relaunch. | You can do this: Run an external program from your program -upg.exe ()
[code=fw:2kk4ziz6]<div class="fw" id="{CB}" style="font-family: monospace;">winexec<span style="color: #000000;">(</span><span style="color: #ff0000;">"upg"</span>, <span style="color: #000000;">1</span><span style="color: #000000;">)</spa... |
App Termination and Relaunch. | Simples,
[code=fw:1zm4kg74]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// C:\FWH..\SAMPLES\TUTOR09.PRG</span><br /><span style="color: #B900B9;">// Modificado en: 07/10/2023</span><br /><br /><span style="color: #00D7D7;">#Include</span> <span style="color: #ff0000;">"... |
App a runtime error return to last function not quit app? | Hi,
When we meet app runtime errors,could we return to last called from function intead of quit app?
for example:
Function a1()
define dialog odlg resource "odlg"
redefine button id 101 of odlg action a2()
activate dialog odlg
return
function a2()
local n1:=1/0
// local n1:="aaa"+2
return
C... |
App a runtime error return to last function not quit app? | Shuming,
You can modify FWH\source\function\errsysw.prg |
App a runtime error return to last function not quit app? | Antonio,
Thank you!
Shuming Wang |
App as service default path | Is no one using FWH / Harbour to build a Windows service ? I would think someone must have encountered this issue.
The main problem is that a 24/7 app used to perform daily tasks automatically, if installed on Windows Server, will not run unless someone actually logs into the server. The way around this is to insta... |
App as service default path | I have an update program called. MLupdate.exe. I place it in the primary directory created for my application ( ie. c:\ML ). This has a subdirectory where all files are stored ( ie. C:\ML\Data\ ).
When run as an application, it checks the current drive and directory and creates a cPath variable that points to the da... |
App en DropBox? | Amigos:
Alguien que tenga experiencia sobre montar una de nuestras aplicaciones, usando Mysql como motor,
y quiera compartir su experiencia???
Alguna hebra por donde tirar?
Saludos |
App en DropBox? | Up! |
App quits on error without showing error Windows 7 | To All
I have been doing my development at work on WinXP and have not had any problems. Recently my Windows 7 32 bit machine will compile my ( same ) programs and run them just fine .. but when the program 'breaks' I do not get the Error screen or an error.log file.
I thought it might be my laptop .. so I just re-for... |
App quits on error without showing error Windows 7 | Do you use errsysw_.prg or the modified errsysw.prg that was published here as an enhancement?
When I updated my Fivewin it was crashing on me also. I found that errsysw_.prg and my modified version was using FWBitmap() with no parameters and it would crash. There must have been a change. Now errsysw.prg is using FWLo... |
App quits on error without showing error Windows 7 | Gale
I have no modified programs .. just using the FWH libs <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Rick |
App quits on error without showing error Windows 7 | Just checking because if you are not getting error message then I believe it is either an error in the error handler itself or windows exception error that is not handled by the error handler. |
App quits on error without showing error Windows 7 | Just a follow up .. when I run buildx tutor01 on my WinXP machine I get this error :
[code=fw:2nl39gyy]<div class="fw" id="{CB}" style="font-family: monospace;"><br />ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿<br />³ FiveWin <span style="color: #00C800;">for</span> xHarbour <span st... |
App quits on error without showing error Windows 7 | Hello,
Do you have an hb_out.log file?.
Harbour creates it when happens your problem. |
App quits on error without showing error Windows 7 | <!-- m --><a class="postlink" href="http://fivetechsupport.com/forums/viewtopic.php?f=6&t=27437&start=0#p152922">http://fivetechsupport.com/forums/viewt ... =0#p152922</a><!-- m --> |
App quits on error without showing error Windows 7 | To All
Elvira, I am using xHarbour and no file what so ever is being created .. the application just abruptly quits.
Hmpaquito, I read your thread and it seems to point to SqlRDD and I am not using any additional libs .. just standard FWH
I appreciate everyone's help .. still stuck here <!-- s:cry: --><img src="{SMI... |
App quits on error without showing error Windows 7 | No Rick, what I mean is that you record calls at the beginning of ErrorSys so:
[code=fw:7x4yl40y]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#define</span> PROCNAME_<span style="color: #000000;">(</span>n<span style="color: #000000;">)</span> ProcName<span style="col... |
App quits on error without showing error Windows 7 | Another problem I had when upgraded was that some functions related to ADS were not automatically included. My app exited without any error message.
Previously I just needed
Request ADS, DBFCDX
But I found that I had to add the following to keep my app from crashing.
external adsgetrelkeypos, ADSSetRelKeyPos, ADSKey... |
App quits on error without showing error Windows 7 | To All
I have solved my problem .. after testing a few other apps on my W7 machine and creating a program break .. I did indeed get the error screen and .log.
That led me to a possible project list corruption in my xMate file. I decided to recreate my xMate project and add all my .prg back in and much to my surprise ... |
App quits on error without showing error Windows 7 | [quote="Gale FORd":2aovw51t]Another problem I had when upgraded was that some functions related to ADS were not automatically included. My app exited without any error message.
Previously I just needed
Request ADS, DBFCDX
But I found that I had to add the following to keep my app from crashing.
external adsgetrelkey... |
App quits on error without showing error Windows 7 | Thank you for the explanation. |
App. for devellopment and maintenance of DBF | Is there a sample out here that has some of the folowing functions insite.
I want to have a tool that collects all the DBF files from my app and store the fields and structure of each. A extra content field is needed to descripe the fields name and what it is used for
Also a list of the indexes and tags would help.
... |
App. for devellopment and maintenance of DBF | Mark,
I started on one years ago, so it is not full featured, but you are welcome to a copy. Click on my name (to the right), then go to my website. Go to the Contact Us page and send me a message with your email address. Then I will send you what I have.
Regards,
James |
App. for devellopment and maintenance of DBF | [quote="Marc Venken":1jsgfyap]Is there a sample out here that has some of the folowing functions insite.
I want to have a tool that collects all the DBF files from my app and store the fields and structure of each. A extra content field is needed to descripe the fields name and what it is used for
Also a list of the ... |
App. for devellopment and maintenance of DBF | These applications are named "data dictionary"
My 2 cents of merkel money |
App.Ini vs Web.Config | In harbour winforms applications we seem to store specific information for our apps in the .ini file. On the web it seems it is stored in web.config. Does mod_harbour have a way to read and write from a web.config file as harbour does with .ini's?
Thanks, |
App.Ini vs Web.Config | Hi,
I think you can write/read yiur file config like a usual file. And for example you can use memowrit/memoread for it
C. |
App.Ini vs Web.Config | Yes, thank you, good point. I was looking for a class that may make it easier like the oIni class that allows us to read and write to INI files. |
App.Ini vs Web.Config | Byron,
You can do
[code=fw:14utfk17]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> cIni := hb_GetEnv<span s... |
App.Ini vs Web.Config | Below is a minimal web.config example from Microsoft Support.
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
</system.web>
</configuration> |
App.Path | How do I get application path in FW?
Thanks in advance
Otto |
App.Path | [quote="Otto":n6rxokhp]How do I get application path in FW?
Thanks in advance
Otto[/quote:n6rxokhp]
cFilePath( GetModuleFileName( GetInstance( ) ) ) |
App.Path | Thank you, Richard. |
AppCrash Windows 7 al leer INI | Hola,
Estoy complilando con la última version de FWH, Harbour y VS2022
Al trabajar con un INI en Windows 7 o Windows Server 2008, la aplicación devuelve un AppCrash.
En Windows 10, 11 o Server de versión superior, funciona sin problemas.
He probado con \Samples\TestIni.prg y también casca.
En concreto casca en la pr... |
AppCrash Windows 7 al leer INI | Fernando,
Por favor comprueba si se genera un fichero hb_out.log y copia el contenido aqui, gracias |
AppCrash Windows 7 al leer INI | Hola,
No genera el archivo hb_out.log
Casca en la lectura del primer valor
[code=fw:1t0hwts8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">GET</span> cTitle SECTION <span style="color: #ff0000;">"main"</span> ENTRY <span style="color: #ff0000;">"Title"</span> <sp... |
AppCrash Windows 7 al leer INI | Aparece algun error en pantalla o simplemente la aplicación termina ? |
AppCrash Windows 7 al leer INI | Testini.exe dejo de funcionar
[code=fw:2kpx3g4f]<div class="fw" id="{CB}" style="font-family: monospace;">Firma con problemas:<br /> <span style="color: #000000;">Nombre</span> del evento de problema: <span style="color: #000000;">APPCRASH</span><br /> Nombre de la aplicación: <span style... |
AppCrash Windows 7 al leer INI | Hola,
Un error recursivo podria estar generando ese problema
Una solucion para detectar el problema es encerrar la operacion de la llamada a la funcion de lectura del ini con un estructura de control de errores y mostrar el error que da. Algo asi como
[code=fw:5noonj1d]<div class="fw" id="{CB}" style="font-family: m... |
AppCrash Windows 7 al leer INI | Hola,
Aun así sigue apereciendo el appcrash y no muestra ningún mensaje de error
[code=fw:fzzo3kuq]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #00C800;">TRY</span><br /> <span style="color: #0000ff;">GET</span> cTitle SECTIO... |
AppCrash Windows 7 al leer INI | Fernando,
Por favor prueba a llamar la función del API de Windows directamente:
MsgInfo( GetPvProfString( cSection, cEntry, cValToChar( uDefault ), cIniFile ) )
y comprueba si sucede lo mismo. gracias |
AppCrash Windows 7 al leer INI | [code=fw:x37pue8i]<div class="fw" id="{CB}" style="font-family: monospace;"><br />...<br />INI oIni FILE <span style="color: #ff0000;">".<span style="color: #000000;">\M</span>yApp.ini"</span><br />? <span style="color: #ff0000;">'a'</span><br /><span style="color: #0000ff;">MsgInfo</span><span style="color: #000000;">... |
AppCrash Windows 7 al leer INI | Fernando,
Este es el código de la función GETPVPROFSTRING()
Puede ser un desbordamiento de pila por el tamaño del buffer (16384). Prueba a poner cantidades mas pequeñas en el tamaño del buffer hasta que desaparezca el crash <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
... |
AppCrash Windows 7 al leer INI | [code=fw:rr23e7pf]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #B900B9;">// MENU PRINCIPAL</span><br /><br /> <span style="color: #B900B9;">// Para Carregar a Ultima Tela Salva no Arquivo .INI chamar FundoWnd()</span><br /> <span style="colo... |
AppCrash Windows 7 al leer INI | Hola,
Sólo con incluir esta función en el código fuente, ya funciona sin problemas.
No he tenido que cambiar el buffer
[code=fw:2utbdxay]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h>... |
AppSys Problem with Demo Code | hi,
in many Sample i found
[code=fw:12w751qz]<div class="fw" id="{CB}" style="font-family: monospace;">procedure AppSys <span style="color: #B900B9;">// XBase++ requirement</span><br /><span style="color: #00C800;">return</span></div>[/code:12w751qz]
i know what it is for Xbase++ but why i found it in FiveWin Sample... |
AppSys Problem with Demo Code | Hi,
You have to remote such lines:
procedure AppSys // XBase++ requirement
return
Your code is compiled without errors in Harbour and FHW. |
AppSys Problem with Demo Code | Hi,
[quote="MOISES":3d0fcjyv]
You have to remote such lines:
[code=fw:3d0fcjyv]<div class="fw" id="{CB}" style="font-family: monospace;">procedure AppSys <span style="color: #B900B9;">// XBase++ requirement</span><br /><span style="color: #00C800;">return</span><br /> </div>[/code:3d0fcjyv]
Your code is compiled witho... |
AppSys Problem with Demo Code | I don´t have hbmk2
I advise you to compile for starting with fwh\samples\buildh yourfile |
AppSys Problem with Demo Code | [quote="MOISES":37ap84w5]I don´t have hbmk2
I advise you to compile for starting with fwh\samples\buildh yourfile[/quote:37ap84w5]
you need harbour "Core-Master" , which include HBMK2, with all LIBs and *.HBC like
[code=fw:37ap84w5]<div class="fw" id="{CB}" style="font-family: monospace;">C:\harbour\contrib\xhb\xhb.hb... |
AppSys Problem with Demo Code | [quote:2hrtl7ql]
n many Sample i found
Code:
procedure AppSys // XBase++ requirement
return
i know what it is for Xbase++ but why i found it in FiveWin Sample <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
[/quote:2hrtl7ql]
Because till a few years back, FWH was av... |
AppSys Problem with Demo Code | hi,
Thx for Answer,
[quote="nageswaragunupudi":1crr8b70]
Because till a few years back, FWH was available for Xbase++ users also. These samples were made those days.
[/quote:1crr8b70]
i was not aware that i can try to compile FiveWin Sample with Xbase++ ... hm ... <!-- s:idea: --><img src="{SMILIES_PATH}/icon_idea.g... |
AppSys Problem with Demo Code | hi,
have found c:\fwh\makes\bormake.zip <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
inside is a *.MAK that i try to modify.
FivEdit produce a B32.BC file so i try to use "these" LIB and i reduce it to 6 Error
[quote:1466qrsk]'_HB_FUN_OCCURS' referenced from C:\... |
AppSys Problem with Demo Code | hm ...
i just have "delete" all (wrong) harbour LIBs in FivEdit IDE and add new from LIB\WIN\BCC
now i got same Error like *.MAK file
[quote:25qqqw0q]Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.
Error: Unresolved external '_HB_FUN_OCCURS' referenced from C:\FWH\LIB\FIVEH.LIB|VALT... |
AppSys Problem with Demo Code | hi,
now i have change in *.MAK all back to same like FivEdit C:\harbour\lib and now no Error when Compile / Link <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
[code=fw:27c7i1oo]<div class="fw" id="{CB}" style="font-family: monospace;">#Borland make sample, <span st... |
Appear Empty paper when use TReport | Hi
I just test small program from my old code to new FWH version.
Appear Empty paper?
[img:30vn37us]http://www.fivetech.com.tw/downloads/TReport%20problem.jpg[/img:30vn37us] |
Appear Empty paper when use TReport | Richard,
It looks like your report is printing too close to the bottom margin which is causing a page feed. You can try changing the margins in the printer setup or changing them in the program code.
Regards,
James
------------------------
Use the method "margin" to change the default 0.2 inch margins.
TReport::... |
Appear Empty paper when use TReport | Hello Richard,
I fixed these problem for me like this:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=31090&p=179578&hilit=oreport#p179578">viewtopic.php?f=3&t=31090&p=179578&hilit=oreport#p179578</a><!-- l -->
Best regards,
Otto |
Appear Empty paper when use TReport | Hi James, Otto
Thanks a lot for help me.
The problem be solved. |
Appear Empty paper when use TReport | Can the issue be solved by suitably setting top and bottom margins by
oRep:Margin( nPixels, RPT_BOTTOM, 0 )
and
oRep:Margin( nPixels, RPT_TOP, 0 )
? |
Appear GPF | Hi
I had old FWH compiled app, when run it and press EXIT button.
I got GPF error message below:
FiveWin for Harbour GPF occurred
Called from UNNITIALIZE_OLE(181)
Called from UNNITIALIZE_OLE(181)
I had to use OLE function.
Any idea for welcome!! |
Append Blank question | I have a client with a large volume of new records daily. We are starting to have problems where a newly appended record is disappearing. What is the best way to handle append blank in a network environment. Currently, we have been using the sample below without a problem, but my client may have many instances where us... |
Append Blank question | cdmmauiThere are two things you can do :1) dbCommit()2) GoTo recno()dbCommit is supposed to do a 'hard disk' write .. however it is un-acceptibly slow if you are appending lots of records in a loop.. If you are just adding one record at a time dbCommit is your answer. If you are appending lots of records in a loop .. I... |
Append Blank question | Hi Rick,Thank You |
Append Blank question | cdmmaui,in a network environment it is dangerous not to check for neterr().Here a module i use for append in networks.example:[code:d22wp1u3]
#define WAIT_SECONDS 2
if lNetAddRec( "tools" )
? "New record was appended."
else
? "Network error! No record appended."
endif
///////////... |
Append Blank question | DarrellYou may also want to take a look at these articles. This info is from my notes and I didn't check to see if the links are still valid.Regards,James-----------------------------4/27/2005 7:08 AMWindows' Oppontunistic LockingIs well described at:<!-- m --><a class="postlink" href="http://www.dataaccess.com/whitepa... |
Append Blank question | Thank You for the information |
Append From | Antonio,
I use in my program Append From commands (17.12.2005 version). When it function is invoked with cdx driver FwPpc show error:
LockFile() not supported in PocketPc.
Append with ntx driver work ok.
Sample:
[code:lp34f7ec]
Request DbfCdx
Request DbfFpt
RddSetDefault ('DbfCdx')
Request Hb_Lang... |
Append From | Pawel,
But is the APPEND ... properly performed ? Does the DBF change ? Thanks. |
Append From | Antonio,
Yes, this method was previous properly. In this way I recreate table after change structure. First I create new table and append records from original table (with set deleted off statements). This method was very fast.
In this moment I change append from to dbappend() function.
Pawel |
Append From | Antonio,
probably I find, error LockFile is show in this situation:
- dbf is open eg. use table new without index file
- index file exists when table is open
- when append from invoked, fw show error
when index dosn't exists append from work ok
[code:1mjs98mq]
use test1 new // without index file, index test1.cdx ... |
Append From | Sabeis si está funcionando 100% en harbour, o da problemas??
Gracias.
El tema es que el mismo proceso en Clipper me va bien pero en Harbour me lanza un GPF y por ahí anda un Append From.
Gracias. |
Append From | Dejarlo estar, ya está solucionado.
Tenía una dbf con un nombre de campo duplicado y cascaba. |
Append From- RESOLVED | a sample of append from ( two dbf same structure)
thanks |
Append From- RESOLVED | Silvio,
USE test1 EXCLUSIVE
APPEND FROM test2
CLOSE DATABASES
USE test1
xbrowse()
Saludos |
Append From- RESOLVED | Silvio,
I think You changed to TDatabase
[color=#0000FF:22nsgp9l]oData := TDatabase():New( , "CUST1", "DBFCDX", .F. ) // exclusive
oData:use()
// AppendFrom( cFile, aFields, bFor, bWhile, nNext, nRec, lRest )
oData:AppendFrom( "CUST2" )
oData:Close()
oData := TDatabase():New( , "CUST1", "DBFCDX", .T. ) // shared
oDat... |
Append From- RESOLVED | thanks i wish tdatabase
the function of conversion of dbf also not run ok and i tried also with tdatabase while with normal ( silvio->) it is ok
this afternoon i will try it |
Append From- RESOLVED | RESOLVED
NOT NEED APPEND FROM
now I can converte all database on my dbf <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
Append SDF error | Hello,
I have a program that import some information from a text-file with the append from SDF command.
From time to time it doesn't import all records.
Here is the test-code:
[code=fw:18tzir8b]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#INCLUDE</span> <span style="color: #... |
Append SDF error | Marc,
To my opinion, your TEST.TXT-file is an XML-file.
I don't think you can add data to your DBF-file by using SDF. |
Append SDF error | Michel,
This file is indead an xml-file. But this is also a text-file. So why can't he import it, and why always on the same line? It's only with this file. Most other xml-files give no problem.
I head this problem also before when importing prg-files. Most of them are imported complete, other not...
I also try it wi... |
Append SDF error | Marc,
It is working fine here. I copied the text.txt from within IE. I wonder if there is some special character after the last line you are getting. Take a look at the original file with a hex editor, or zip it and send it to me at jbott at compuserve dot com.
I am using FWH 10.8/xHarbour.
Regards,
James |
Append SDF error | James,
File send.
Regards,
Marc |
Append SDF error | For those interested in the solution, I found that if I appended a space to the end of each line in the text.txt file, then APPENDed it, it works fine. I have no idea why this is needed, but it is a viable workaround.
Regards,
James |
Append SDF error | Can you make a little sample and try it with Clipper? If it were a real bug I would report it to the developers list.
EMG |
Append SDF error | Enrico,
Like I already explained in previous message, in clipper52 it work just fine.
Here is the link of the text-file in zip format.
[url:1yv1wawm]http://www.vms.be/FWTest/test.zip[/url:1yv1wawm]
Regards,
Marc |
Append SDF error | Marc,
The fields in TEST.TXT are separated by hex "0A".
If they are before treted by an text editor and saved, the separator becomes "0D0A" and then it works right. It could be a xHarbour error.
Only tested with xHarbour Compiler build 1.0.0 (SimpLex)
Regards, Euclides |
Append SDF error | [quote="Marc Vanzegbroeck":3qcnkllj]Enrico,
Like I already explained in previous message, in clipper52 it work just fine.
Here is the link of the text-file in zip format.
[url]http::/www.vms.be/FWTest/test.zip[/url]
Regards,
Marc[/quote:3qcnkllj]
Thank you. I'm looking at the sample...
EMG |
Append SDF error | Ok, I reported it to the developers list. I tried to fix the problem but it's really too much complicated for me, sorry.
EMG |
Append SDF error | Euclides,
Thanks for the info.
I use now this code as workaround.
[code=fw:3mtjj796]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#INCLUDE</span> <span style="color: #ff0000;">"fivewin.CH"</span><br />REQUEST DBFCDX<br /><span style="color: #00C800;">FUNCTION</span> test<spa... |
Append SDF error | Euclides,
[quote:1aagyho3]The fields in TEST.TXT are separated by hex "0A".
If they are before treted by an text editor and saved, the separator becomes "0D0A" and then it works right. It could be a xHarbour error.
[/quote:1aagyho3]
When I look at the file the fields ARE separated by 0D0A already, so I don't think t... |
Append SDF error | The bug has been fixed by Vicente Guerra in the xHarbour CVS.
EMG |
Append SDF error | Enrico,
Thanks for getting that done.
James |
Append SDF error | Thanks Enrico,
Will this be available in the next release of xharbour, or can I already link the new function?
Regards,
Marc |
Append SDF error | [quote="Marc Vanzegbroeck":ufh4tvt7]Thanks Enrico,
Will this be available in the next release of xharbour,[/quote:ufh4tvt7]
Sure.
[quote="Marc Vanzegbroeck":ufh4tvt7]or can I already link the new function?[/quote:ufh4tvt7]
No, you have to build xHarbour from CVS.
EMG |
Append SDF fails | I am using FWH 2.5 when I have an append line as follows the program crashes.
...
USE Tmp
append from (FileName) SDF
...
The error I get is DBFNTX/1021 Data Width Error
Called from Fieldput(0)
Called from __DBSDF(196)
...
However if I use the same code in Clipper
the append works correctly.
Is there an issue with t... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.