Thanks!

As far as the timestamp stuff...  have found that using FSETDATETIME and
trying to set only one of the options, either DATE, or TIME, results in the
other one getting timestamped to a NOW() type time.  Hence I wrote my cludge
in Clipper get around that...  I tried all sorts of tricks..
HB_FSETDATETIME(file, nil, time),  (file, , time)... etc.. and nothing
seemed to work.

=== code ===

FUNCTION FY_FSETDATE(sFilename, sDate)
  // sets the file date only, leaving time untouched.
  // function emulates FUNCKy's laziness.  Must pass this a string only.

  // HB_FSETDATETIME will timestamp the only other field, so next line keeps
original TIME
  LOCAL sTimeOriginal := FILETIME(sFilename)

  RETURN HB_FSETDATETIME(sFilename, CTOD(sDate), sTimeOriginal)

FUNCTION FY_FSETTIME(sFilename, sTime)
  // sets the file time only, from "HH:MM:SS" string, leaving date
untouched.

  // HB_FSETDATETIME will timestamp the only other field, so next line keeps
original DATE
  LOCAL dDateOriginal := FILEDATE(sFilename)

  RETURN HB_FSETDATETIME(sFilename, dDateOriginal, sTime)



2010/2/3 Przemysław Czerpak <dru...@acn.waw.pl>

> On Wed, 03 Feb 2010, smu johnson wrote:
>
> Hi,
>
> > Thanks Przemek.
> > Could you post back here when I should get the SVN etc?
>
> It's already ready in SVN.
> I committed it few minutes after I sent you the message.
> Look at the ChangeLog:
>
>   2010-02-03 11:15 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
>     * harbour/src/rdd/dbfcdx/dbfcdx1.c
>       ! do not verify FOR expression just after loading new index file
>         in SIXCDX RDD. It's CL52 DBFCDX / SIX3 SIXCDX compatible behavior
>         but Harbour DBFCDX and CL53 DBFCDX / COMIX verifies both KEY and
>         FOR expressions when index is loaded.
>       ! fixed RTE numbers to be CL53 compatible when index with wrong
>         (returning wrong results) KEY or FOR expression is loaded.
>
> also the problem with FILEATTR() is already fixed:
>   2010-02-02 17:58 UTC+0100 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
>
> anyhow you may want to look at:
>
>    HB_FGETATTR( <cFileName>, @<nAttr> ) -> <lSuccess>
>    HB_FSETATTR( <cFileName>, <nAttr> ) -> <lSuccess>
>
> and maybe:
>
>   HB_FSETDATETIME( <cFileName>, [<dDate>], [<cTime HH:MM:SS>] ) ->
> <lSuccess>
>   HB_FSETDATETIME( <cFileName>, [<tTimeStamp>] ) -> <lSuccess>
>
>   HB_FGETDATETIME( <cFileName>, @<tTimeStamp> ) -> <lSuccess>
>   HB_FGETDATETIME( <cFileName>, @<dDate>, @<cTime> ) -> <lSuccess>
>
> Harbour support timestamp values. You can find more information about
> timestamp and other Harbour extensions in doc/xhb-diff.txt
>
> best regards,
> Przemek
> _______________________________________________
> Harbour mailing list (attachment size limit: 40KB)
> Harbour@harbour-project.org
> http://lists.harbour-project.org/mailman/listinfo/harbour
>



-- 
smu johnson <smujohn...@gmail.com>
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to