Thank you for being a valued part of the CNET community. As of December 1, 2020, the forums are in read-only format. In early 2021, CNET Forums will no longer be available. We are grateful for the participation and advice you have provided to one another over the years.

Thanks,

CNET Support

General discussion

Alarm Clock

Sep 18, 2007 4:15AM PDT

Can you help me find an alarm clock program that doesn't go off after you wake your computer up from hibernation or turn your computer back on, if it is a missed alarm. Having a missed alarm go off after I missed it is really annoying.

Discussion is locked

- Collapse -
Maybe you can write your own?
Sep 23, 2007 12:31AM PDT

Microsoft offers Visual Basic Express for free so if you want to create your own software easily you could.

Sometimes you can't find your exact software so creating your own means it does what you want.

Bob

- Collapse -
Microsoft offers Visual Basic Express
Sep 23, 2007 2:33AM PDT

How do I use Microsoft offers Visual Basic Express? Is it easy to figure out? I've never made any software before.

- Collapse -
Could be easy.
Sep 23, 2007 2:49AM PDT

For most, BASIC is a snap to learn. For instance your code could be as simple as...

alarmtime = the time you want to go off

while true
If NOW() - alarmtime = 0 then BEEP
doevents
sleep(1)
end while

This isn't the real code but an example starter idea.

Bob