害我查了半天的错误!av错误,小心Component对象使用Application当Owner

简介: var  ConnectionService := TConnService;procedure TfrmMain.FormCreate(Sender: TObject);begin  ConnectionService := TConnService.
var
  ConnectionService := TConnService;

procedure TfrmMain.FormCreate(Sender: TObject);
begin
  ConnectionService := TConnService.Create(Application);
end;

destructor TfrmMain.Destroy;
begin
  ConnectionService.Free//执行这里时出错,原因使用Application当Owner
//,在这之前Application自动把ConnectionService释放掉了(把Owner为Application的都释放掉了)
  inherited;
end;

这样会出错,frmMain为Application的主窗体
目录
相关文章
|
8月前
GEE错误——XXX is not a function,如何解决这个问题?
GEE错误——XXX is not a function,如何解决这个问题?
529 0
|
3月前
|
存储 IDE 开发工具
来咯,他来咯 看GitHub Codespaces 如何帮助缩短开发设置时间
来咯,他来咯 看GitHub Codespaces 如何帮助缩短开发设置时间
68 0
|
5月前
|
运维
遇到Error-Down,怎么办?别慌!这样处理!
遇到Error-Down,怎么办?别慌!这样处理!
|
6月前
|
存储 数据库
cannot read properties of underfined (reading ‘code‘),别光知道抄,有的时候,细节就是影响全局关键,别人代码到你项目不一定100%正确,判断bug出
cannot read properties of underfined (reading ‘code‘),别光知道抄,有的时候,细节就是影响全局关键,别人代码到你项目不一定100%正确,判断bug出
|
6月前
|
Java
静态资源路径访问不到的问题,Whitelabel Error Page,There was an unexpected error,解决bug的好方法,大量翻看别人的文章,终究是粗心惹的祸
静态资源路径访问不到的问题,Whitelabel Error Page,There was an unexpected error,解决bug的好方法,大量翻看别人的文章,终究是粗心惹的祸
测试时,请求方法一定要写对,写错照样出问题,Method Not Allowed 删除接口写错,注意Controller层中UserMapper中的写法,视频往后看看就能看到解决问题的方法了
测试时,请求方法一定要写对,写错照样出问题,Method Not Allowed 删除接口写错,注意Controller层中UserMapper中的写法,视频往后看看就能看到解决问题的方法了
‘pageNum‘ is declared but its value is never read.Vetur(6133,点击跳转页面也跳转视频敲代码不要着急,往后看看,再跟着敲敲说不定bug就解决了
‘pageNum‘ is declared but its value is never read.Vetur(6133,点击跳转页面也跳转视频敲代码不要着急,往后看看,再跟着敲敲说不定bug就解决了
怎么删除360base64.dll,这个方法百分百管用
怎么删除360base64.dll,这个方法百分百管用
369 0
Webpack低级错误踩坑瞬间 Error: Child compilation failed:
Webpack低级错误踩坑瞬间 Error: Child compilation failed:
282 0
|
Java Maven
【异常】记录“错误: 找不到或无法加载主类 com.iotsoft.back.iotauthority.ApplicationRun”的解决方案
【异常】记录“错误: 找不到或无法加载主类 com.iotsoft.back.iotauthority.ApplicationRun”的解决方案
78 0