[Harbour] Re: ourxdbu free for all

2009-01-07 Thread Chen Kedem
Miguel, > I DENY THE USE OF THIS APPLICATION TO THE CITIZENS TO ISRAEL TO STOP KILLING > PEOPLE. I am furious that you are mixing politics with the Harbour project! This is NOT a political group, and adding such notes degrade the community efforts to help people all over the world, regardless of

Re: [Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Bruno Luciani
Barry , try this library http://www.carozodequilmes.com.ar/Projects/QAC/hbcomm.lib.htm this page its part of http://www.carozodequilmes.com.ar/Projects/QAC/_Index_QAC.htm It 's in spanish but the code in zip it's comented in english Bruno 2009/1/7 Barry Jackson : > > Marilio, > I just te

Re: [Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Barry Jackson
Marilio, I just tested with the laptop and hbtpathy is now receiving - only - hence the loopback fail. Send String = g FetchChars = Handle 3 Recv string = So we are half way there! Pity it's this way round as my application only needs to send ! Barry -- View this messag

Re: [Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Barry Jackson
Randy: That's better, it compiled and linked OK - thanks. Still not working though. Marilio: I just got your reply - thanks you are right I missed a "," compared to the testtp.prg in contrib. I have run my test with and without Randy's ReleaseCPU() in the delay loop and still no output using the

Re:[Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread maurilio longo
Barry, I'm not sure, I don't have telepathy help at hand, but > > function main > tp_open( 1,, 9600, 8, "N", 1 ) tp_open( port, input-buffer size, output-buffer size, speed... so it lacks a comma and as such 9600 is not port speed and all the other parameters are wrong as well. But, I have t

Re: [Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Randy Portnoff
Sorry, the function is called hb_ReleaseCPU() - It is defined in IDLE.C as follows: /* Release a CPU time slice */ HB_FUNC( HB_RELEASECPU ) { hb_releaseCPU(); } At 04:26 PM 1/7/2009, you wrote: Thanks Randy, I wondered about that but did not know of a way to implement ThreadSleep(). I hav

Re: [Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Barry Jackson
Thanks Randy, I wondered about that but did not know of a way to implement ThreadSleep(). I have tried to use your suggestion but without documentation I can't find the lib for ReleaseCPU() :- undefined reference to `HB_FUN_RELEASECPU' Where can I find a full listing of Harbour functions etc. the

Re: [Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Randy Portnoff
Hi Barry, I can't help you with your problem but I do have two comments regarding your ThreadSleep() function: 1. I do not think that this will sleep the thread (unless Harbour does something which I doubt it does) - You need to make a call in this loop to explicitly sleep the thread. For ex

Re: [Harbour] How to generate ERROR.LOG file with details of the failure of run-time errors?

2009-01-07 Thread Guillermo Varona Silupú
Teo Fonrouge escribió: On Wednesday 07 January 2009 07:07:49 Guillermo Varona Silupú wrote: In xHarbour ever happens a runtime error, it generates a file named Error.log contains: *** Error log file [snip] +--

[Harbour] Using /contrib/hbtpathy fuctions in Linux

2009-01-07 Thread Barry Jackson
I am building an application to run in Mandriva Linux that needs com port functions as in Clipper tools. I have built an xhgtk GUI front end which is now working fine thanks to help here. I am now trying to use the functions in telepath.prg to provide the com functions. I have tested telepath.prg

Re: [Harbour] -w3 optimizazion issue

2009-01-07 Thread Lorenzo Fiorini
On Wed, Jan 7, 2009 at 7:29 PM, Mike Evans (Gmail) wrote: > The right fix is to delete every nvar in your function (as far as I can > understand), but in general if you remove the assignment it will be nice if > the compiler return an error that you are making a concatenation - > calculation on a

[Harbour] 2009-01-07 13:52 UTC-0600 Teo Fonrouge (teo/at/windtelsoft/dot/com)

2009-01-07 Thread Teo Fonrouge
* source/vm/classes.c + addded __objHasMsgAssigned( object, "msgName" ) ; this is similar to xHarbour __clsMsgAssigned() and checks ; if a VIRTUAL message has been overrided in a sub-class. ; TODO: Please check this implementation, I'm sure it can be optimized. best regards

Re: [Harbour] what can I use for these missing xharbour functions?

2009-01-07 Thread Teo Fonrouge
On Wednesday 07 January 2009 12:26:25 Maurilio Longo wrote: > Teo Fonrouge wrote: > > Try to use __objHasMsg() to substitute __clsMsgAssigned(). > > Teo, thanks, but I need to know if a subclass implements a message which is > virtual in the parent class. I think that __objHasMessage() returns true

RE: [Harbour] -w3 optimizazion issue

2009-01-07 Thread Mike Evans (Gmail)
The right fix is to delete every nvar in your function (as far as I can understand), but in general if you remove the assignment it will be nice if the compiler return an error that you are making a concatenation - calculation on a non initialized variable. I think that something like that it will

Re: [Harbour] what can I use for these missing xharbour functions?

2009-01-07 Thread Maurilio Longo
Teo Fonrouge wrote: > > Try to use __objHasMsg() to substitute __clsMsgAssigned(). > Teo, thanks, but I need to know if a subclass implements a message which is virtual in the parent class. I think that __objHasMessage() returns true even if the subclass does not implement it. > For hb_itemPutCL

Re: [Harbour] How to generate ERROR.LOG file with details of the failure of run-time errors?

2009-01-07 Thread Teo Fonrouge
On Wednesday 07 January 2009 07:07:49 Guillermo Varona Silupú wrote: > In xHarbour ever happens a runtime error, it generates a file named > Error.log contains: > > *** Error log file > [snip] > +--

Re: [Harbour] what can I use for these missing xharbour functions?

2009-01-07 Thread Teo Fonrouge
On Wednesday 07 January 2009 11:03:53 Maurilio Longo wrote: > Hi, > > I'm trying to build a program of mine I've developed under xharbour on > harbour and I've found a couple of "missing" functions: > > ..\lib/hbcurl.a(teasy.o): Undefined symbol _HB_FUN___CLSMSGASSIGNED > referenced from data segme

[Harbour] #unSomething

2009-01-07 Thread Maurilio Longo
Hi, I'm using these two commands inside a .ch file on xharbour, harbour gives an error when it encounters them #xuntranslate CINIT #uncommand __DEFINE__ telling me that #xuntranslate and xuncommand miss a => in their definition. Are they not supported on harbour or am I missing something? Than

Re: [Harbour] -w3 optimizazion issue

2009-01-07 Thread Lorenzo Fiorini
On Wed, Jan 7, 2009 at 6:05 PM, Mike Evans (Gmail) wrote: > I think that in this example the warning is ok. You never used this > variable. As I can understand a variable is used only if it's a right > opponent of an expression or a function parameter (at least on first level > optimization). Yes

RE: [Harbour] -w3 optimizazion issue

2009-01-07 Thread Mike Evans (Gmail)
Hi Lorenzo, I think that in this example the warning is ok. You never used this variable. As I can understand a variable is used only if it's a right opponent of an expression or a function parameter (at least on first level optimization). Brgds Mike Evans -Original Message- From: harbour

[Harbour] -w3 optimizazion issue

2009-01-07 Thread Lorenzo Fiorini
function main local nVar := 0 nVar++ return nil In the code above harbour returns: testopt.prg:2:MAIN warning: W0032 Variable 'NVAR' is assigned but not used in function '2:MAIN' if I "fix" the warning removing ":= 0" with: function main local nVar nVar++ return nil I get no more messages but

[Harbour] what can I use for these missing xharbour functions?

2009-01-07 Thread Maurilio Longo
Hi, I'm trying to build a program of mine I've developed under xharbour on harbour and I've found a couple of "missing" functions: ..\lib/hbcurl.a(teasy.o): Undefined symbol _HB_FUN___CLSMSGASSIGNED referenced from data segment ..\lib/hbcurl.a(hbcurl.o): Undefined symbol _hb_itemPutCLStatic refer

[Harbour] ourxdbu free for all

2009-01-07 Thread Miguel Angel Marchuet
uploaded new version of ourxdbu * Version 1.5.2 + Added multilanguage support (spanish, french, polish, russian, portuguesse, and others ) + Added vista skin + Added dbfnsx driver download it from: http://www.xharbour.com/xhc/index.asp?page=xhc_download_detail.asp&type=dl&id=78&show_i=7&

[Harbour] Difference harbour/xharbour about free VIRTUAL MEMORY

2009-01-07 Thread Massimo Belgrano
Can somebody confirm? From: Andi Jahja Subject: Re: Current CVS stable? Newsgroups: gmane.comp.lang.xharbour.devel Date: 2009-01-07 10:46:45 GMT (2 hours and 17 minutes ago) Very stable! :-) One important status now compared to Harbour :-): xHarbour gently free VIRTUAL MEMORY upon application

[Harbour] How to generate ERROR.LOG file with details of the failure of run-time errors?

2009-01-07 Thread Guillermo Varona Silupú
In xHarbour ever happens a runtime error, it generates a file named Error.log contains: *** Error log file Date : 14/04/2008 Time : 11:44:38 Available Memory : 626036 Multi Threading : No VM Optimization : 0 Ap

Re: [Harbour] what happened to the mailing list?

2009-01-07 Thread Barry Jackson
Hello all - glad it's working again. I generally read the mail in the Nabble forum as it is easier to follow threads. The site says:- "This forum is an archive for the mailing list: harbour@harbour-project.org" however there is still a gap in the messages between Dec 27 and Jan 5th. Also, can so

Re: [Harbour] what happened to the mailing list?

2009-01-07 Thread Francesco Saverio Giudice
Hi Maurilio, there was a problem on Harbour mailing list that Phil (thanks again) has solved from 5th of january. You can find lost messages on harbour mailing list archive. Best Regards Francesco Il 07/01/2009 9.34, Maurilio Longo ha scritto: Hi all, as subject says, what happened? I did

[Harbour] what happened to the mailing list?

2009-01-07 Thread Maurilio Longo
Hi all, as subject says, what happened? I did not receive messages from december the 20th to january the 5th. I've seen this morning a warning from the mailing list of excessive bouncings of my address, which is just impossible since I'm subscribed to several mailing list which kept delivering me