dummzeuch 1505 Posted June 9 TRegistry seems to be missing methods to read and write entries of the type REG_MULTI_SZ. I would expect ... procedure TRegistry.WriteMultiString(const AName: string; const Values: TStringDynArray); ... and ... function TRegistry.ReadMultiString(const AName: string): TStringDynArray; Am I overlooking something? Share this post Link to post
Remy Lebeau 1391 Posted June 9 (edited) 1 hour ago, dummzeuch said: Am I overlooking something? Are you using an older version of Delphi? ReadMultiString() and WriteMultiString() methods were added in Delphi 12 Athens: function ReadMultiString(const Name: string): TArray<string>; procedure WriteMultiString(const Name: string; const Value: TArray<string>); Edited June 9 by Remy Lebeau 1 Share this post Link to post
dummzeuch 1505 Posted June 9 OK, that explains it. I was looking at Delphi 10.2. Share this post Link to post