[Lazarus] EXC_BAD_ACCESS, Could not access memory

dmitry boyarintsev skalogryz.lists at gmail.com
Thu Apr 23 12:23:36 CEST 2009


also, you don't need to write 'type' before every type declaration.
It's better to use pascal style:

type
  TSomeItem = record
                  First :single;
                  Second:Single;
                  Third :integer;
  end;

  TSomethingArr = array of TSomeItem;

  TMyObject =class
  private
    FItem :TSomethingArr;
    ..
  end;

thanks,
dmitry



More information about the Lazarus mailing list