Re: [xHarbour-developers] Uploaded: xharbour-1.20.01.src.zip

2009-04-02 Thread Phil Krylov
Hi, On Thu, Apr 2, 2009 at 5:21 AM, Luiz Rafael Culik Guimaraes l...@xharbour.com.br wrote: I also can not see your uploads. I suspect the same problem as with Luiz - the files probably uploaded to different project, like xbgtk It seems the files are uploaded to directory of my SF user

Re: [xHarbour-developers] Str() function.

2009-04-02 Thread modalsist
Miguel, I agree that extension is preferable, but in this case, on str function, this have no sence. The unique purpose of str is convert a numeric var to string one. For it we have asc() function. IMO, this extension is uselesss on str and produce strange results, instead expected ones. In

Re: [xHarbour-developers] Str() function.

2009-04-02 Thread Patrick Mast, xHarbour.
Hello, I would like error/base instead these results: ? str('1')     // null char ? str('1',0)   //         49 ? str('1',1)   // * ? str('1',2)   // 49 I agree. Str(a,1,0) should produce an error. Patrick --

Re: [xHarbour-developers] Uploaded: xharbour-1.20.01.src.zip

2009-04-02 Thread Ron Pinkas
Phil, I don't understand, what problem do we have with cmd.exe? Don't we just need to add few more calls to zip command for the missing files? Ron -- From: Phil Krylov p...@newstar.rinet.ru Sent: Thursday, April 02, 2009 2:05 AM To: Luiz Rafael

Re: [xHarbour-developers] Uploaded: xharbour-1.20.01.src.zip

2009-04-02 Thread Ron Pinkas
Phil, Luiz, Enrico, I just added Release Technician role to Luiz Phil. Ron -- From: Phil Krylov p...@newstar.rinet.ru Sent: Thursday, April 02, 2009 2:05 AM To: Luiz Rafael Culik Guimaraes l...@xharbour.com.br Cc: Ron Pinkas

Re: [xHarbour-developers] Str() function.

2009-04-02 Thread Marcelo Lombardo
Patrick, As Ron said, this is intentional. This is a xHB extension like: a := ABCD ? a[2]// prints B, no RT error These are similar extensions because in C, 1 byte char can be read as numeric, as well as a multiple by char can be adressed as array of char. It means you can use C-like

Re: [xHarbour-developers] Uploaded: xharbour-1.20.01.src.zip

2009-04-02 Thread Luiz Rafael Culik Guimaraes
Ron I'll move the release tonight Regards Luiz - Original Message - From: Ron Pinkas ron.pin...@xharbour.com To: Phil Krylov p...@newstar.rinet.ru; Luiz Rafael Culik Guimaraes l...@xharbour.com.br Cc: Enrico Maria Giordano e.m.giord...@emagsoftware.it;

Re: [xHarbour-developers] Str() function.

2009-04-02 Thread Eduardo Fernandes
Patrick, IMO, all functions inhirited from Clipper, should at least, behaves like this. For example: Val(1) returns an error/base, as expected. If str('1',2) extension is very important, so hb_str() should be created, instead implement it in str(). I would like know what use of

Re: [xHarbour-developers] Str() function.

2009-04-02 Thread Marcelo Lombardo
Hello, Eduardo IMO, all functions inhirited from Clipper, should at least, behaves like this. That's pretty simple: xHarbour behaves like Clipper AND has a documented extension. It may look useless to you but not to others who are familiar with C. We do not need to have limitation