gpt4 book ai didi

delphi - 为什么在设置 IHTMLInputTextElement 的值时会出现访问冲突?

转载 作者:行者123 更新时间:2023-12-03 18:21:12 25 4
gpt4 key购买 nike

我收到以下错误:

Access Violation at address 0050AA07 in module "project1.exe". Read of address 00000000.



我正在尝试在 TWebBrowser 中自动填写表格。它只是表单上称为“登录”的字段。

这是什么意思?我该如何解决?
procedure TForm1.Button2Click(Sender: TObject);
var
doc: IHTMLDocument2;
frm: IHTMLFormElement;
fld: IHTMLInputTextElement;
begin
doc := webbrowser1.Document as IHTMLDocument2;
frm := doc.forms.item(0, EmptyParam) as IHTMLFormElement;
fld := frm.item('login', EmptyParam) as IHTMLInputTextElement;
fld.value := 'someone';
end;

最佳答案

这意味着您正在取消引用设置为 nil 的指针。并且试图进行这种非法行为的代码位于 $0050AA07在你的过程中。

如果您无法从中解决问题,那么如果向我们展示代码,我们可以告诉您为什么您的指针设置为 nil .

关于delphi - 为什么在设置 IHTMLInputTextElement 的值时会出现访问冲突?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4984116/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com