Hi,
I'm trying to get data from a record (structure) and copy it to a memo box component. I keep getting compatibility errors.
Here's the code:
procedure TEdtLgFrm.FormActivate(Sender: TObject);
var
RecINFO : INFO; //INFO is a Record
begin
read_options(@RecINFO); //read options file
EdtLgMb.Lines := RecINFO.logo; //get logo info from INFO
end;
Anyone know how I do this?
Thanks.
I'm trying to get data from a record (structure) and copy it to a memo box component. I keep getting compatibility errors.
Here's the code:
procedure TEdtLgFrm.FormActivate(Sender: TObject);
var
RecINFO : INFO; //INFO is a Record
begin
read_options(@RecINFO); //read options file
EdtLgMb.Lines := RecINFO.logo; //get logo info from INFO
end;
Anyone know how I do this?
Thanks.