Page 1 of 1

BUG: HelpFile Version 02/03/2003

Posted: 2003-10-09 09:12:19
by Ruffus2000
It is not a Bug, but some Informations are missing.

In Section Technical Information -> Catalog File Format

in the Header there is some Information missing!

Code: Select all

OwnerDescription:        array of char;
MfG
Ruffus2000

Posted: 2003-10-09 09:24:46
by antp
What is missing ?
If you mean that it does not compile, it is normal. As explained at the top of the page, when I wrote "array of char" it means an Integer with the length followed by the characters. In Delphi you can store that in a string, but do not forget to make a SetLength before reading the data to the string.

Posted: 2003-10-09 09:48:33
by Ruffus2000
Sorry, i explain it.

Your Help File says:

Code: Select all

Headers :

strFileHeader33 = ' AMC_3.3 Ant Movie Catalog 3.3.x   www.buypin.com  www.ant.be.tf ';
OwnerName:        array of char;
OwnerICQ:         array of char;
OwnerSite:        array of char;
OwnerMail:        array of char;
i think it should be

Code: Select all

Headers :

strFileHeader33 = ' AMC_3.3 Ant Movie Catalog 3.3.x   www.buypin.com  www.ant.be.tf ';
OwnerName:        array of char;
OwnerICQ:         array of char;
OwnerSite:        array of char;
OwnerMail:        array of char;
OwnerDescription:        array of char; 

Posted: 2003-10-09 12:20:09
by antp
ok, thanks for the info ;)