在特定时间获取时间事件

在特定时间获取时间事件

本文介绍了在特定时间获取时间事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 嗨! 是否有可能在特定时间举办时间活动,例如8点钟的时间??我的程序在后台运行,并且最小化到托盘栏。 如果没有,是否有一种平滑的方式以不同的方式实现这一点? 祝你好运, Andreas Lundgren 解决方案 只需在表单上放置一个计时器控件,并将其设置为每秒触发一次。 您在代码中的某个位置设定了目标: 将目标定为日期 目标=" 10/4/2003 8:00 PM" ; 并在计时器代码中检查此目标: 私有子Timer1_Timer() 如果现在=>目标然后 ''点燃你需要在目标时间发生的事件 结束如果 结束子 嗯,这可能会在英国产生相当不同的结果在美国使用相同的 代码 就个人而言,我会使用DateSerial()和TimeSerial()来避免这样的问题歧义在计时器代码中检查此目标: Private Sub Timer1_Timer()如果Now =>目标然后''点燃你需要在目标时间发生的事件结束如果结束子Just put a timer control on the form and set it to fire every second.Somewhere in the code you set your target:Dim Target As DateTarget = "10/4/2003 8:00 PM"And in the timer code you check for this target:Private Sub Timer1_Timer()If Now => Target Then'' fire the event that you need to happen at the target timeEnd IfEnd SubHmm, that could have rather different results in the UK to the samecode in the USAPersonally I would use DateSerial() and TimeSerial() to avoid suchambiguityAnd in the timer code you check for this target:Private Sub Timer1_Timer() If Now => Target Then '' fire the event that you need to happen at the target time End IfEnd Sub 这篇关于在特定时间获取时间事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-27 22:51