Jeremy previous suggestion of string size is interesting as in Delphi it shows
plenty of examples of string size, yet the help for the Virtual tree I am using
shows no string size allocation as per the example I posted earlier.
Also, the compiler does not seem to care about string size.
So, is it mandatory to allocate string space in a record or not?
Thanks,
Al+

  TPRegState = ^TRegState;
  TRegState = record
    TrialDays: Integer;
    Key, License: string;
    Registered: Boolean;
  end;

or

  TPRegState = ^TRegState;
  TRegState = record
    TrialDays: Integer;
    Key, License: string[64];
    Registered: Boolean;
  end;


_______________________________________________
Delphi mailing list
[EMAIL PROTECTED]
http://ns3.123.co.nz/mailman/listinfo/delphi

Reply via email to