Added: 3 years ago
From: 10Iceman01
Views: 46,299
Sort by time | Sort by thread (beta)

Link to this comment:

Share to:
see all

All Comments (84)

Sign In or Sign Up now to post a comment!
  • @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

    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..

  • @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

  • can I get a copy of your source code? thanks :)

  • 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

  • @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

  • put the set button code in to textbox1 

  • woow epic program :) whats is the music name in backround pls? :3

  • Can i get the codes to the "AlarmClock V2" ??

    

  • Code ???

  • why didnt make it exclamation/information instead of critical??

  • yeah

  • tough it's not an exe file so i don't know

  • Very Good Thanks One Question

    How you convert this to exe?

    Thanks for the Help

  • Comment removed

  • @SpokenGiovannie first click save all and save it then click "Build" then "publish (file name) " and run the setup in the folder u published to. :)

  • Hmm thanks but i need a code for:

    When a label tekst is 1000 and i typ in a textbot for how mutch numbers then the 1000 going down.

    Loke something of this:

    TextBox2.Text = label1.Text - 1

  • What is the code for label2? That the number going down?

    From 3 to 2 from 2 to 1 etc?

  • @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 Hmm are you sure? I get an error by usng this method!

  • great video

  • What if your computer clock isn't in 24hr mode? I tried a few different things, but just couldn't seem to get it to work when "am" and "pm" is involved. I guess I could make 2 text boxes, one for setting an AM time and another for setting a PM time...

  • leave britney alone!

    (Britney Spears music in there lol)

    cool vid

  • Thx

  • Nice! :)

    But I used also a Textbox2 to put a reason in the message box (so I made the messagebox link to the textbox2) XD

    Ps: srry about my bad english XD I don't really know how to say those things in english! :)

  • Bonjour,La Team pro recrute Programmeur 2D Gmk , Grafiste(Pour crée des MAP) et des programmeurs en VB.Net Pour crée le Setup et tout l'introduction Pour crée Un jeu MMORPG du style dofus On fais sa pour le plaisir sa ve dire que on le vendras pas mais on pourrait faire Comme dofus ( Avantage pour les abonnés ) Notre Furum que vous trouverez dans la description d'une de mes video Rejoignez nous vite Cordialement Philippro

  • @wood1996mon

    if u watch the video that's what i used....

  • Thank You for this video but

    please hear me.. i need to know how to make it come ( right - Down )

    when i start please ^^

  • ok thats good

  • is there any way to let Label1 show like "seconds of day" and Label2 "Minute if day" etc?

    Nice video!!

  • let's say you have 3 labels and u want to see

    h min sec

    You do this:

    'For hour

    Label1.text = TimeOfDay.Hour

    'For minute

    Label2.text = ":" + TimeOfDay.Minute

    'For second

    Label3.text = ":" +TimeOfDay.Second

  • @10Iceman01

    What about adding the PM / AM?

  • @10Iceman01

    What about adding the PM / AM?

  • @10Iceman01 Let's say you have 3 labels and u want to see h min sec You do this: 'For hour Label1.text = TimeOfDay.Hour 'For minute Label2.text = ":" + TimeOfDay.Minute 'For second Label3.text = ":" +TimeOfDay.Second How about the AM/PM?
  • how did u make it .exe file

  • First u save the project where U want

    After that on vb,net menustrip where u have the options file,edit,view etc go to Build and press the Build "name_of_your_application" button

    After U done that go to where u saved ur application /bin/release and u will see an exe there

  • @NikonixVids He debug it (Press F5)

  • How do you get it to play music when the alarm is activated? Im running vista if tht helps

  • There are 2 simple ways:

    1.If U want to play .wav file(works only for .wav not mp3 or others:

    If TimeofDay = The_alarm_time Then

    My.Computer.Audio.Play("locati­on_of_.wav_file")

    End if

    2.If U are using the windows media player control(works for wav,mp3 and others)

    If TimeofDay = The_alarm_time Then

    AxWindowsMediaPlayer1.URL = "location_of_file"

    End If

    The 3rd method would be direct x but it's pretty hard to explain that.

  • cheers dude! ill try that! oh btw gr8 tutorial

  • @10Iceman01 Hey its works for me the second way, but can i set more then one song????? Please answer me cause I Dream hard and i can't wake up so easy !

  • @pantic233

    pm sent...

  • @pantic233 u can use a windows media player. if you want i can help you ;<)

  • hey, um any way i could get this to play a song when the alarm goes off, cos i wanna use it to wake me up in the mornings and dno how to do tht

  • Is there a way to make your own maximize button on VB or no?

  • Add a picturebox,label,button or whatever U want and at that object on the clicking event add:

    Me.WindowState = FormWindowState.Maximized

  • k. Thanks!

  • could you please tell me what you use to convert it to an .exe???

  • In visual basic on the menustrip where are the options like:File,Edit,View,Project,De­bug.... select the option Build.

    After that go to where U saved your application bin>release

  • ok, cool thanks dude!

  • i like this video =D +5

    and it was very useful answers to the comments

    this has helped me alot thanx =D =D =D

  • man how do u make it minimizable to the system tray??

    pls reply anyone who knows... most of all the vid uploader :D

  • U can use: Me.hide() or Me.visible = false or Me.opacity = 0.0 Basically U make it invisible. At notify icon depending on the method U used to hide the form U will use: Me.show() or Me.visible = true or Me.opacity = 1 U will add the command in a contextmenu strip which U will add to your notify icon.
  • wow the final is amazing

  • Whats The first Song?

  • noticed one thing in your clock that bugged me, if you want an afternoon alarm time you have to enter it in 24hr or military time, granted i can do that easily but , i wrote an if.. then.. else.. argument and added a combo box with am and pm on my clock and it will covert the time over, if your interested i can send you the code, just pm me

  • good for you but that application is 1 year old and it's a dead project for me (I won't work on it anymore).

    Maybe I will make another video with another alarm clock from scratch and will make it more advanced with alot of options/customizations.

  • love the music

  • this prog is awesome, anyhow is there anyway to look at the finished code, trying to build an alarm clock of my own. just wanted to compare the code and see how yours worked. if possible. if not thats cool will prolley just spend a few days working out the bugs and tweaking mine. vb is a fun language

  • awesome downloadable model

  • the v2 model you made is very nice

  • Use a notifyicon

  • whew nice program

  • You could also change the font of the displayed time(S).

    using a fontdialog.

  • o.O, codes plis?

  • can i know the song at 5:00 its so romantic.

  • britney spears-everytime

  • Ty for fast answer.

  • That video is Great!!!

  • its in the video just do it

  • Could you send me the code? Thanks.

  • Thanks!

  • any chance you can send me the source code please, i would be greatly thank full

    And btw...nice alarm clock =]

  • Please Send me source code :D:D

  • can you send me the source code.pls pls pls.thanks.

  • Thank you :D

  • Can you send me the source code?

    I'm just a beginner.

    Thanks,

    Mike

  • Can you send me the code please?:"(

    I dont get it...

  • any chance you can send me the source code please, i would be greatly thank full.

  • Code sent

  • thanks you so much

  • can you send me the code please Thanx

  • that wasa great tutorial and good program

Loading...
0 / 00Unsaved Playlist Return to active list
    1. Your queue is empty. Add videos to your queue using this button:
      or sign in to load a different list.
    Loading...Loading...Saving...
    • Clear all videos from this list
    • Learn more