Go Back   Gaming Gutter > Non-Gaming > Programming > Source Code


Source Code - Have a source code/project files you want to post? Do so here.

» Site Navigation
» Home
» FAQ
» Log in
User Name:

Password:

Not a member yet?
Register Now!
» Advertisement
» Recent Threads
Go to first new post Lending Sneezles Pet
Today 09:26 PM
by Judle
Last post by Judle
Today 09:26 PM
0 Replies, 2 Views
Go to first new post Where should I get a...
Yesterday 09:44 AM
Last post by virusdetected
Today 09:25 PM
6 Replies, 49 Views
Go to first new post Consumption
Today 09:23 PM
by Axed
Last post by Axed
Today 09:23 PM
0 Replies, 3 Views
Go to first new post Buy it NOW! Special...
11-19-2008 10:30 PM
Last post by KaosKinesis
Today 09:22 PM
19 Replies, 229 Views
Go to first new post I.. Want a tattoo.
11-13-2008 04:01 PM
by Zombies
Last post by Zombies
Today 09:18 PM
32 Replies, 293 Views
Reply
 
LinkBack Thread Tools Display Modes

 [vb6] Alarm Clock source
Old 07-23-2008, 08:05 PM   #1 (permalink)
Site Programmer

Male Violent_J is offline
 
Violent_J's Avatar
 
Join Date: Nov 2006
Location: Sacramento, California
Age: 16
Posts: 933
GPoints: 469
iTrader: 5 / 100%
Violent_J Is Amongst RoyaltyViolent_J Is Amongst Royalty
Rep Power: 9
[vb6] Alarm Clock source

Code:
Option Explicit


Private Sub cmdstart_Click()
    Timer1.Enabled = True
    lblstatus.Caption = "started"
End Sub

Private Sub cmdstop_Click()
    Timer1.Enabled = False
    Timer2.Enabled = False
    lblstatus.Caption = "stopped"
End Sub



Private Sub Timer1_Timer()
    txttime.Text = Time
        If txttime.Text = txtinput.Text Then
            Timer2.Enabled = True
    End If
End Sub


Private Sub Timer2_Timer()
    Play App.Path & "\sound.wav"
End Sub

Private Sub Form_Unload(Cancel As Integer)
    Dim frmTemp As Form
    For Each frmTemp In Forms
        Unload frmTemp
        Set frmTemp = Nothing
    Next
    End
End Sub
__________________



Current rep: 110
  Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Powered by vBadvanced CMPS v3.0 RC2

All times are GMT -7. The time now is 09:30 PM.


vBulletin skin developed by: eXtremepixels
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The contents of this webpage are copyright © 2006-2008 GamingGutter.com. All Rights Reserved.

Page generated in 0.08618498 seconds (100.00% PHP - 0% MySQL) with 19 queries