How can I set the Delphi projects options FileDescription? when I try

ProjectOptions.Values['Keys'].SetOptionsValue('FileDescription', Title);

(title is a string)
I get invalid variant operation

link|improve this question
feedback

1 Answer

Read the comments above IOTAProjectOptions declaration in ToolsApi unit. Try something like this:

var
  Options: TStrings;
begin
  Options := TStrings(Integer(ProjectOptions.Values['Keys']));
  if Assigned(Options) then
    Options.Values['FileDescription'] := Title;
end;
link|improve this answer
Thanks for you answer but it doesn't seems to work for me. – user644884 Mar 4 '11 at 16:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.