私のスキルが限られているため、匿名メソッドをサポートしていない Delphi 7 で同じことを行う方法がわかりません!
質問する
3519 次
1 に答える
2
procedure TheProcThatHandlesItAll(const doc: ICefDomDocument)
var
q: ICefDomNode;
begin
// "q" is the ID of the text input element
q := doc.GetElementById('q');
if Assigned(q) then
q.SetElementAttribute('value', 'Hello, world');
end
procedure TMainForm.actDomExecute(Sender: TObject);
begin
crm.Browser.MainFrame.VisitDomProc(TheProcThatHandlesItAll);
end;
于 2012-10-12T19:01:51.147 に答える