Re: [Harbour] 2008-04-09 20:42 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)

2008-04-12 Thread Lorenzo Fiorini
On Wed, Apr 9, 2008 at 8:44 PM, Przemyslaw Czerpak [EMAIL PROTECTED] wrote:

 ! Fixed object inspector in the debugger.
 ! Added HbDbBrowser:invalidate() message. Fixes work area browsing in 
 debugger.
 ! Added an minimalistic TBrowse implementation that is just enough
   for internal use by the debugger. Fixes miscellaneous problems e.g.
   when debugging a piece of code with RELATIONs turned on.
 Fixes by Phil Krylov borrowed from xHarbour.

Great !!!

many thanks,
Lorenzo
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] New TBROWSE class

2008-04-12 Thread Teo Fonrouge
On Thursday 10 April 2008 08:52:18 pm you wrote:
 On Thu, 10 Apr 2008, Teo Fonrouge wrote:
  Using the last tbrowse version that you just send I still have found
  problems regarding of size  position of cells, for illustrate this
  problems, I took the liberty of change a little your sample and attached
  it as tb2.prg please try it and modify/reorder the items in the array
  aData in the AddMoreColumns() function to see the problems.

 Thank you very much for your tests - they greatly help me.
 I'm attaching tbrowse code which should fix this and also
 some other issue I was talking about in previous message.
 The only one difference between CL5.3 and tbr2 you sent is
 in logical column formatting - Clipper takes size of row logical
 value without the picture clause and the calculated position is
 not in the middle of column. I haven't replicated it intentionally.
 If you will find sth else then please inform me.

I haven't found any problems with this version, I have tested it with two 
large apps that make heavy use of tbrowse, in fact, is solves (in my case) 
the following issues with the current tbrowse SVN version:

 * Fixes the colors obtained in :colorblocks
 * Fixes wrong positioning of empty columns and then setting a width  0
 * Fixes wrong positions and displaying of columns with freeze cols
 * Fixes sporadic RT/errors when setting freezed cols
 * Fixes wrong displaying of heading/footing labels


  (I think that will be useful if we could have this new tbrowse.prg in the
  SVN (renamed of course) to be able to collaborate in the debugging.)

 Current debugger does not use TBrowse. I've just synced it with
 xHarbour Phil Krylov's modification. He added small TBrowse class to
 debugger code which is used instead of the RTL one.

I haven't a Clipper 5.* framework and barely remember the tbrowse behavior, 
but this tbrowse version fixes problems that showed (until now) when I jumped 
from Clipper to [x]Harbour. I'm sure that we need more tests, specially from 
people with Clipper 5.*, but  I'm sure that this tbrowse version is better 
that the SVN one.


best regards

Teo
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] Build Problem in BCC

2008-04-12 Thread Jerry Finuliar
I been offline for a couple of weeks and after I update my working copy I get 
this error.
D:\harbourcall make_b32.bat
TLIB  Version 2.0   Copyright (c) 1987, 1988 Borland International
Warning: unknown command line switch 'P' ignored
Error: unexpected char '3' in command line

__
Do You Yahoo!?
Tired of spam?  Yahoo! Mail has the best spam protection around 
http://mail.yahoo.com ___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


Re: [Harbour] New TBROWSE class

2008-04-12 Thread Teo Fonrouge
On Friday 11 April 2008 12:32:14 am Teo Fonrouge wrote:

[snip]

Przemek,

Just a little request, in the :doConfigure() method, I think that we need to 
use the value of oCol:width if it is not NIL, this is to allow a combination 
of a oCol:block that can return a empty string in this stage *but* oCol:width 
has a numeric value.

I don't know if this is a Clipper 5.* compatible feature.

This is the diff:

diff
@@ -1241,7 +1241,11 @@
   xValue := Eval( oCol:block )
   cValue := Transform( xValue, oCol:picture )
   cType  := ValType( xValue )
+  IF oCol:width = NIL
   nWidth := LEN( cValue )
+  ELSE
+nWidth := oCol:width
+  ENDIF
   cColSep := oCol:colSep
   IF cColSep == NIL
  cColSep := ::colSep
/diff


best regards

Teo
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


[Harbour] 2008-04-11 11.45 UTC+0100 Belgrano Massimo (mbelgrano/at/deltain.it)

2008-04-12 Thread Massimo Belgrano
2008-04-11 11.45 UTC+0100 Belgrano Massimo (mbelgrano/at/deltain.it)

  * harbour/contrib/rddado/adordd.prg 

* removed old reference aAdoFunc[UR_FOUND]:=(@ADO_FOUND())

 

Massimo Belgrano mailto:[EMAIL PROTECTED] 

Albo Nazionale Informatici Professionisti n° 2620

Socio n° 2843 Associazione Informatici Professionisti

 

Analisi e sviluppo software per Lan e Web
Consulenza informatica - Formazione

Delta Informatica S.r.l.  http://www.deltain.it http://www.deltain.it/  
Via Torelli , 31 - 28100 Novara - Tel: 0321/30281

 

 

image001.gif___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour


RE: [Harbour] How Hbmk, hblnk, hbcc with bcc

2008-04-12 Thread Massimo Belgrano
Can i use http://win-bash.sourceforge.net/ ?



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Przemyslaw
Czerpak
Sent: Thursday, April 10, 2008 2:56 AM
To: Harbour Project Main Developer List.
Subject: Re: [Harbour] How Hbmk, hblnk, hbcc with bcc

On Wed, 09 Apr 2008, Massimo Belgrano wrote:
 How can I make Hbmk.exe, hblnk.exe, hbcc.exe with harbour/bcc?

hb* tools are BASH scripts and are supported only on platforms
where bash is available and now they can work only with GCC based
compilers.
For BCC you will need new tool. But it should not be hard to write
sth like using pure .prg code. For sure not now (I'm sorry but I'm
too busy with my business jobs) but maybe in the future I'll write
sth what will work with other compilers.

best regards,
Przemek
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour
___
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour