0
如何設置Delphi項目選項FileDescription? 當我嘗試OTA設置Delphi項目Keys選項
ProjectOptions.Values['Keys'].SetOptionsValue('FileDescription', Title);
(標題是一個字符串)
我得到無效的變異操作
如何設置Delphi項目選項FileDescription? 當我嘗試OTA設置Delphi項目Keys選項
ProjectOptions.Values['Keys'].SetOptionsValue('FileDescription', Title);
(標題是一個字符串)
我得到無效的變異操作
看了上面IOTAProjectOptions
聲明的評論中ToolsApi
單元。 試試這樣的:
var
Options: TStrings;
begin
Options := TStrings(Integer(ProjectOptions.Values['Keys']));
if Assigned(Options) then
Options.Values['FileDescription'] := Title;
end;
謝謝你的回答,但它似乎並沒有爲我工作。 – user644884 2011-03-04 16:17:15