Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Latest release
Message
From
26/07/1999 09:17:01
 
 
To
23/07/1999 19:48:26
General information
Forum:
Visual FoxPro
Category:
Stonefield
Title:
Miscellaneous
Thread ID:
00245601
Message ID:
00246029
Views:
19
>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')
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform