我正在使用Delphi Xe4(试用版)和Indy 10.5025重新编译。 我使用三个组件:
Twebbrowser
TIdHttpServer
使用OnCommandGet
收听8088:
if (ARequestInfo.Document = '/map.htm') then
begin
str2 := ' '
+'<!DOCTYPE html>'
+' <html>'
+' '
+' <head>'
+' </head>'
+' <body>'
+' TEST PAGE 1'
+' </body>'
+' </html>'
;
AResponseInfo.ContentText := str2;
end;
TButton
OnClick:
IdHTTPServer1.Active := True;
WebBrowser1.Navigate('http://[mylocalhost]:8088/map.htm');
当我点击按钮时,在调试中我有消息:
项目引发异常类EAccessViolation,并显示消息'地址00519D86访问冲突,访问地址0000000CC'。
不在调试中只是不运行。
如何找到并解决此问题?
提前致谢