Board index » delphi » Book 'Delphi Database Development'

Book 'Delphi Database Development'

Hi, friends

I bought the book 'Delphi Database Development' (Greg Lief and
others).  In the final of the book, there's a class named TDBfield to
create DBF files, like the Dbcreate() in Clipper.
I typed all the code, but some code is strange to Delphi 1.0, like:

Procedure TDBfield.setname(sNew:string);
begin
   ...
   if IsSymbol(snew) then

end;
The function IsSymbol don't exist in the code, neither in the
companion CD.
How to solve this problem? I need to complete the class, to use with
my application, to create DBF like in Clipper.

In the same book, in the page 916, he point to a file named
XBFORMAT.PAS, in the companion CD. Again, this file don't exist in the
included CD.

I send two emails to Greg Lief (Object Lessons home page), but,
unfortunatelly, he can't answer to me.

Please, who can help me?
Thanks.

Hercules Russano
HRsoFT-"Simples, mas funciona!"
S?o Gon?alo-Rio de Janeiro-Brazil
hruss...@uol.com.br

 

Re:Book 'Delphi Database Development'


Have you ever looked at halcyon ??
http://www.grifsolu.com

It might help..
--
Gordon Hamm
Voice Data Systems Inc.
Astoria Communications
360-686-8315

Quote
Hercules Russano wrote in message <3491a97a.2820...@forums.borland.com>...
>Hi, friends

>I bought the book 'Delphi Database Development' (Greg Lief and
>others).  In the final of the book, there's a class named TDBfield to
>create DBF files, like the Dbcreate() in Clipper.
>I typed all the code, but some code is strange to Delphi 1.0, like:

>Procedure TDBfield.setname(sNew:string);
>begin
>   ...
>   if IsSymbol(snew) then

>end;
>The function IsSymbol don't exist in the code, neither in the
>companion CD.
>How to solve this problem? I need to complete the class, to use with
>my application, to create DBF like in Clipper.

>In the same book, in the page 916, he point to a file named
>XBFORMAT.PAS, in the companion CD. Again, this file don't exist in the
>included CD.

>I send two emails to Greg Lief (Object Lessons home page), but,
>unfortunatelly, he can't answer to me.

>Please, who can help me?
>Thanks.

>Hercules Russano
>HRsoFT-"Simples, mas funciona!"
>S?o Gon?alo-Rio de Janeiro-Brazil
>hruss...@uol.com.br

Re:Book 'Delphi Database Development'


If your need is to create DBF files + indexes, have you looked MAKEDBF.ZIP
on Delphi Super Page.
If I remember it right, it was written by some female who seemed to know
something about using that data structure.

Markku Nevalaien

Quote
Hercules Russano wrote:

> Hi, friends

> I bought the book 'Delphi Database Development' (Greg Lief and
> others).  In the final of the book, there's a class named TDBfield to
> create DBF files, like the Dbcreate() in Clipper.
> I typed all the code, but some code is strange to Delphi 1.0, like:

> Procedure TDBfield.setname(sNew:string);
> begin
>    ...
>    if IsSymbol(snew) then

> end;
> The function IsSymbol don't exist in the code, neither in the
> companion CD.
> How to solve this problem? I need to complete the class, to use with
> my application, to create DBF like in Clipper.

> In the same book, in the page 916, he point to a file named
> XBFORMAT.PAS, in the companion CD. Again, this file don't exist in the
> included CD.

> I send two emails to Greg Lief (Object Lessons home page), but,
> unfortunatelly, he can't answer to me.

> Please, who can help me?
> Thanks.

> Hercules Russano
> HRsoFT-"Simples, mas funciona!"
> S?o Gon?alo-Rio de Janeiro-Brazil
> hruss...@uol.com.br

Re:Book 'Delphi Database Development'


Thanks, but I have so few money...

Quote
"Gordon Hamm" <v...@astoria.com> wrote:
>Have you ever looked at halcyon ??
>http://www.grifsolu.com

>It might help..
>--
>Gordon Hamm
>Voice Data Systems Inc.
>Astoria Communications
>360-686-8315
>Hercules Russano wrote in message <3491a97a.2820...@forums.borland.com>...
>>Hi, friends

>>I bought the book 'Delphi Database Development' (Greg Lief and
>>others).  In the final of the book, there's a class named TDBfield to
>>create DBF files, like the Dbcreate() in Clipper.
>>I typed all the code, but some code is strange to Delphi 1.0, like:

>>Procedure TDBfield.setname(sNew:string);
>>begin
>>   ...
>>   if IsSymbol(snew) then

>>end;
>>The function IsSymbol don't exist in the code, neither in the
>>companion CD.
>>How to solve this problem? I need to complete the class, to use with
>>my application, to create DBF like in Clipper.

>>In the same book, in the page 916, he point to a file named
>>XBFORMAT.PAS, in the companion CD. Again, this file don't exist in the
>>included CD.

>>I send two emails to Greg Lief (Object Lessons home page), but,
>>unfortunatelly, he can't answer to me.

>>Please, who can help me?
>>Thanks.

>>Hercules Russano
>>HRsoFT-"Simples, mas funciona!"
>>S?o Gon?alo-Rio de Janeiro-Brazil
>>hruss...@uol.com.br

Hercules Russano
HRsoFT-"Simples, mas funciona!"
S?o Gon?alo-Rio de Janeiro-Brazil
hruss...@uol.com.br

Re:Book 'Delphi Database Development'


Thanks, I will try this...but why did the code in the book don't works
well?
Please, who can help me?

Quote
Markku Nevalainen <mneva...@netlife.fi> wrote:
>If your need is to create DBF files + indexes, have you looked MAKEDBF.ZIP
>on Delphi Super Page.
>If I remember it right, it was written by some female who seemed to know
>something about using that data structure.

>Markku Nevalaien

>Hercules Russano wrote:

>> Hi, friends

>> I bought the book 'Delphi Database Development' (Greg Lief and
>> others).  In the final of the book, there's a class named TDBfield to
>> create DBF files, like the Dbcreate() in Clipper.
>> I typed all the code, but some code is strange to Delphi 1.0, like:

>> Procedure TDBfield.setname(sNew:string);
>> begin
>>    ...
>>    if IsSymbol(snew) then

>> end;
>> The function IsSymbol don't exist in the code, neither in the
>> companion CD.
>> How to solve this problem? I need to complete the class, to use with
>> my application, to create DBF like in Clipper.

>> In the same book, in the page 916, he point to a file named
>> XBFORMAT.PAS, in the companion CD. Again, this file don't exist in the
>> included CD.

>> I send two emails to Greg Lief (Object Lessons home page), but,
>> unfortunatelly, he can't answer to me.

>> Please, who can help me?
>> Thanks.

>> Hercules Russano
>> HRsoFT-"Simples, mas funciona!"
>> S?o Gon?alo-Rio de Janeiro-Brazil
>> hruss...@uol.com.br

Hercules Russano
HRsoFT-"Simples, mas funciona!"
S?o Gon?alo-Rio de Janeiro-Brazil
hruss...@uol.com.br

Other Threads