Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Latest release
Message
De
26/07/1999 09:17:01
 
 
À
23/07/1999 19:48:26
Information générale
Forum:
Visual FoxPro
Catégorie:
Stonefield
Titre:
Divers
Thread ID:
00245601
Message ID:
00246029
Vues:
22
>Hi James.
>
>>Can anybody tell me which release we are up to? I know a bunch of patches have been sent, but i don't see any info on any new service releases on the Stonefield Website.
>
>I just posted the update to SDT 5.1e about 10 minutes ago.
>
>Doug

Doug,

I talked to Kevin about this problem. He sent me this code. Can you tell me if SDT actually fixes the DBC?

The Backlink class was overwriting the end of the fields area in table headers
with 0x5C (it should be 0x0D). This was caused by two things:

1. The Backlink class was writing to the wrong location...it was writing to the
correct location minus 1.
2. The QStartMa.prg program was writing out a backslash as the first character.

This required the following changes:

In CBackLink (located in CUtils.vcx)
Changed...
=FSEEK(This.nFileHandle, This.nDataStart -264)
To...
=FSEEK(This.nFileHandle, This.nDataStart -263)

QStartMa.prg
Changed...
lcBackLink = lower('\' + lcProject + '.dbc')
To...
lcBackLink = lower(lcProject + '.dbc')
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform