The procedure you are looking for may be Move()

Delphi help will gives the following example...

var
      A: array[1..4] of Char;
      B: Integer;
begin
      Move(A, B, SizeOf(B));
end;

Steve


At 11:19 am 25.09.01, you wrote:
>Hi all,
>
>   I have created a database with one of its fields defined as an array of 
> bytes (9 of them).
>
>   The array field is named 'Data' , for want of something better.
>
>   I want to write another memory array defined as, var MemData : 
> array[0..8] of byte, to the Database field.
>
>   I can't remember or find out how to do this and I would like somebody 
> to enlighten me.
>
>        Something like < Form1.FFTable1.Fieldbyname('Data'). {asArray?} := 
> MemData; > maybe ?
>
>Cheers
>
>        Colin
>

---------------------------------------------------------------------------
    New Zealand Delphi Users group - Delphi List - [EMAIL PROTECTED]
                  Website: http://www.delphi.org.nz
To UnSub, send email to: [EMAIL PROTECTED] 
with body of "unsubscribe delphi"
Web Archive at: http://www.mail-archive.com/delphi%40delphi.org.nz/

Reply via email to