BUG: HelpFile Version 02/03/2003

You found an error in the program ? Report it here
Post Reply
Ruffus2000
Posts: 2
Joined: 2003-10-09 08:57:04

BUG: HelpFile Version 02/03/2003

Post 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
antp
Site Admin
Posts: 9665
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post 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.
Ruffus2000
Posts: 2
Joined: 2003-10-09 08:57:04

Post 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; 
antp
Site Admin
Posts: 9665
Joined: 2002-05-30 10:13:07
Location: Brussels
Contact:

Post by antp »

ok, thanks for the info ;)
Post Reply