作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我收到以下错误:
Access Violation at address 0050AA07 in module "project1.exe". Read of address 00000000.
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/
我收到以下错误: Access Violation at address 0050AA07 in module "project1.exe". Read of address 00000000. 我正
我是一名优秀的程序员,十分优秀!