5194|6

83

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

WinCE死机 [复制链接]

为什么我用VS2008的VB编了一个时钟程序(智能设备应用程序),然后部署到WinCE 5.0上,程序跑一会自己就死机了。很奇怪。后来发现死机主要取决于Timer控件,1秒刷新一次,3分多钟后死机,如果1毫秒刷新一次,2秒后就死机。为什么?怎么解决?谢谢!
此帖出自WindowsCE论坛

最新回复

可能是因为使用了ImageList和PictureBox控件,通过Timer一毫秒加载一次图片,导致内存使用量过大,进而死机。我改成通过Timer控制Label.Text变化,就好了,不死机了。  详情 回复 发表于 2010-3-22 12:12
点赞 关注
 

回复
举报

79

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
是不是不出现了类似内存泄露的情况呢?
应该跟你Timer控件的使用有一定的关系。
此帖出自WindowsCE论坛
 
 
 

回复

71

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
Timer的响应中,做了什么操作?

应该是不Timer的问题,因为用它的人很多,都没有出现过问题的。
此帖出自WindowsCE论坛
 
 
 

回复

72

帖子

0

TA的资源

一粒金砂(初级)

4
 
可能是内存泄露,每个TIMER都会出现一次,所以和时间长短没关系,而和TIMER次数有关。
此帖出自WindowsCE论坛
 
 
 

回复

62

帖子

0

TA的资源

一粒金砂(初级)

5
 
timer的操作如下:
    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Dim Timedigit(12) As Integer
        Timedigit(0) = DatePart("h", Now) \ 10
        Timedigit(1) = DatePart("h", Now) Mod 10
        Timedigit(2) = DatePart("n", Now) \ 10
        Timedigit(3) = DatePart("n", Now) Mod 10
        Timedigit(4) = DatePart("s", Now) \ 10
        Timedigit(5) = DatePart("s", Now) Mod 10
        Timedigit(6) = (DatePart(DateInterval.Year, Now)) \ 10
        Timedigit(7) = (DatePart(DateInterval.Year, Now)) Mod 10
        Timedigit(8) = DatePart(DateInterval.Month, Now) \ 10
        Timedigit(9) = DatePart(DateInterval.Month, Now) Mod 10
        Timedigit(10) = DatePart(DateInterval.Day, Now) \ 10
        Timedigit(11) = DatePart(DateInterval.Day, Now) Mod 10
        PictureBox1.Image = ImageList1.Images(Timedigit(0))
        PictureBox2.Image = ImageList1.Images(Timedigit(1))
        PictureBox3.Image = ImageList1.Images(Timedigit(2))
        PictureBox4.Image = ImageList1.Images(Timedigit(3))
        PictureBox5.Image = ImageList1.Images(Timedigit(4))
        PictureBox6.Image = ImageList1.Images(Timedigit(5))
        PictureBox16.Image = ImageList1.Images(Timedigit(6))
        PictureBox15.Image = ImageList1.Images(Timedigit(7))
        PictureBox14.Image = ImageList1.Images(Timedigit(8))
        PictureBox13.Image = ImageList1.Images(Timedigit(9))
        PictureBox12.Image = ImageList1.Images(Timedigit(10))
        PictureBox11.Image = ImageList1.Images(Timedigit(11))
    End Sub
此帖出自WindowsCE论坛
 
 
 

回复

72

帖子

0

TA的资源

一粒金砂(初级)

6
 
看不出哪里有内存泄露
此帖出自WindowsCE论坛
 
 
 

回复

66

帖子

0

TA的资源

一粒金砂(初级)

7
 
可能是因为使用了ImageList和PictureBox控件,通过Timer一毫秒加载一次图片,导致内存使用量过大,进而死机。我改成通过Timer控制Label.Text变化,就好了,不死机了。
此帖出自WindowsCE论坛
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

关闭
站长推荐上一条 1/10 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表