马上加入IBC程序猿 各种源码随意下,各种教程随便看! 注册 每日签到 加入编程讨论群

C#教程 ASP.NET教程 C#视频教程程序源码享受不尽 C#技术求助 ASP.NET技术求助

【源码下载】 社群合作 申请版主 程序开发 【远程协助】 每天乐一乐 每日签到 【承接外包项目】 面试-葵花宝典下载

官方一群:

官方二群:

C#闹钟源码下载简易版

  [复制链接]
bupa | 2014-11-17 21:55:20 | 显示全部楼层
......
freeyy1314 | 2014-11-18 16:51:01 | 显示全部楼层
顶一个
mo丶小杰 | 2014-11-19 15:58:34 | 显示全部楼层
不做伸手党
MMXX123 | 2014-11-19 16:01:52 | 显示全部楼层
wfsafsfsadfsadfasd
44378 | 2014-11-19 19:34:42 | 显示全部楼层
学习学习
44378 | 2014-11-19 20:03:57 | 显示全部楼层
public partial class MainForm : Form
    {
        public MainForm()
        {
            InitializeComponent();
        }
        //定义时分
        int h = 0;
        int m = 0;
        int s = 0;
        //保存事件
        private void button1_Click(object sender, EventArgs e)
        {
            h = dateTimePicker1.Value.Hour;//时
            m = dateTimePicker1.Value.Minute;//分
            s = dateTimePicker1.Value.Second;//秒
            timer1.Enabled = true;
            timer1.Start();
        }
        //定时扫描
        private void timer1_Tick(object sender, EventArgs e)
        {

            if (DateTime.Now.Hour == h && DateTime.Now.Minute == m && DateTime.Now.Second == s)
            {
                MessageBox.Show("当前时间:" + DateTime.Now + "   时间已到!");
                timer1.Stop();
                timer1.Enabled = false;
                return;
            }
        }
    }



这样子具体到秒,报警也就不用报60次了
ibcadmin | 2014-11-19 22:53:49 | 显示全部楼层
44378 发表于 2014-11-19 12:03
public partial class MainForm : Form
    {
        public MainForm()

  哈哈哈 当时做的仓促 上传后才发现这个问题
C#论坛 www.ibcibc.com IBC编程社区
C#
C#论坛
IBC编程社区
rufo | 2014-11-20 14:08:45 | 显示全部楼层
好东西.我那走了哈,哈哈哈
ningjiyan | 2014-11-20 17:10:41 | 显示全部楼层
谢谢
三十未有二十余 | 2014-11-20 22:43:07 | 显示全部楼层
看看
*滑块验证:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则