invalid pointer operation
我在aform 中创建一了个专门接收数据的类trenddata
create 事件中
onetrend := trenddata.create;
然后在线程中接收数据,接收数据是从串口来的,只要串口有数据,线程就不会停止.
点击aform上面的一个按钮,生成模式话框bform.弹出错误,invalid pointer operation
它的create 事件里
MyDrawTrend := TDrawTrend.Create(OneTrend,Self.PaintBox1);
Tdrawtrend是另外一个画波形的类.根据onetrend里面的数据来画,然后在关闭bform时,也会弹出invalid pointer operation
请问这是怎么回事?
问题点数:20、回复次数:2Top
1 楼aliya(菜鸟)回复于 2006-03-09 10:05:09 得分 0
有没有人知道?Top
2 楼Dlwxn(Dlwxn)回复于 2006-03-09 15:42:37 得分 20
这种事情遇到过,估计是你的主程序已经结束线程,但是线程里面还没有执行完,具体执行到哪里也不确定,当用到变量的时候,即会出现你说的错误。Top
相关问题
- Invalid Pointer Operation?
- 在用VCLSKIN时,报 invalid pointer operation!
- 最简单的DLL也出错,Invalid pointer operation
- 为什么总提示 invalid pointer operation 这种错误?
- Express Printing system v3.3.3 汉化版的问题‘invalid pointer operation’
- 请问诸位高手,invalid pointer operation 可能是什么引发的错误呢?
- 自己写的DLL函数,第二次执行就报错Invalid Pointer Operation
- 动态创建TDBChart的Series,出现"Invalid pointer operation",是怎么回事?
- Invalid stack pointer on return from function call
- 为什么对象释放出错? 在FormDestroy中释放对象时出现 'Invalid pointer operation'的错误。




