Visual Basic 2008 Alarm clock
Loading...
46,266
Uploader Comments (10Iceman01)
Top Comments
-
whew nice program
-
can I get a copy of your source code? thanks :)
see all
All Comments (84)
-
@DJextrime Set the timer1 interval for 1000ms , that means 1 sec , cause if is 100 the timer will check label2 10 times in a sec
-
did exactly what u did, but mine doesnt notify me when the "alarm" goes off, no sound, no msgbox?
-
When time is up program starts spaming messeges
-
@10Iceman01 Hmm are you sure? I get an error by usng this method!
-
put the set button code in to textbox1
-
woow epic program :) whats is the music name in backround pls? :3
Loading...
@10Iceman01
~Sorry, this is an old video, indeed, but I find it interesting, and I'm stuck~
Iceman, YOU ROCK! I have lots of questions (I am begginer at Visual Basic).
1. How can you make it hide in notification area?
2. How can you make it .exe?
3. How can you make a "Right Click Menu" in notification area?
Gabryel501 4 months ago
@Gabryel501
I'm telling you this from my mind cause I'm not using Windows anymore but I'm pretty sure this is how it works:
1.You make the form visible = false and from the notification area you can add in that menu a show function visible = true
To add the notification area you just add the item "Notifyicon" and you make it visible = true (either from the load code or from an action or just by default)
2.You go to the Visual Basic menu where it sais Build..
10Iceman01 4 months ago
@Gabryel501
3.you can add by adding a context menu strip , but don't forget to go to the notify icon item that you added before and select what context menu are you using
Good Luck
10Iceman01 4 months ago
What is the code for label2? That the number going down?
From 3 to 2 from 2 to 1 etc?
MyloVanDongen 1 year ago
@MyloVanDongen
U just add another timer with the interval 1000,you enable it when you click the button and the timer will have the code:
if label2.text > 0 then
Label2.text -=1
else
timer.stop
messagebox("message")
label2.text = 0 'to make sure it's not with -
end if
10Iceman01 1 year ago