For Questions and Assistance please use the proper Category.. please..
 
HomeCalendarFAQSearchMemberlistUsergroupsRegisterLog in
Welcome guys!!.. In order for you guys to post your Questions and assistance requests,, please REGISTER first.. Only members can post.. If you have requests then feel free to email ADMIN neuron or SPAMMER onatzky.. thanks!
Search
 
 

Display results as :
 
Rechercher Advanced Search
Donation box
If you find this forum helpful.. you now have the option to donate through Paypal. Just click the donate button below to transfer you to paypal page.
Latest topics
» Forum has been sent out to FACEBOOK
Sat Jun 26, 2010 8:40 pm by neuron

» Request for IMS sample code
Mon Apr 19, 2010 2:39 pm by light_yagami

» how to execute an exe using vb.net
Mon Jan 04, 2010 4:56 am by neuron

» How to Check and create a folder in VB.NET
Thu Sep 03, 2009 9:08 am by neuron

» USing the File Browser in VB.net
Thu Aug 27, 2009 10:29 pm by neuron

» How to open an access database and populate datagrid view in VB.NET
Sat Aug 22, 2009 11:22 am by neuron

» How to add a dynamic clock in your VB.NET FORM
Sat Aug 22, 2009 1:42 am by neuron

» How to enable screensaver using vb.net
Fri Aug 21, 2009 7:37 pm by neuron

» Hi To all of you guys
Fri Aug 14, 2009 11:43 pm by neuron

Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search
Forum
Affiliates
free forum
 

Share | 
 

 How to add a dynamic clock in your VB.NET FORM

View previous topic View next topic Go down 
AuthorMessage
neuron
Administrator
Administrator


Posts: 31
Join date: 2009-08-06

PostSubject: How to add a dynamic clock in your VB.NET FORM   Sat Aug 22, 2009 1:42 am

after searching from lots of sites... finally found a working code to place a dynamic clock in your VB form


Code:
   
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        Timer1.Interval = 1000
        Timer1.Start()
    End Sub
    Private Sub timer1_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Timer1.Tick
        Label1.Text = System.DateTime.Now
    End Sub



Originally taken from : http://www.programmersheaven.com/mb/VBNET/332605/332605/trying-to-write-s-simle-clock-program/

_________________
credit goes to the original uploader of the codes..

In this forum we will share the knowledge we have to every single individual who shows respect and interest.. If you stay.. you learn.. if not.. then please go.........

--it's me Admin"D"
Back to top Go down
View user profile http://myonlinekr.forumotion.com
 

How to add a dynamic clock in your VB.NET FORM

View previous topic View next topic Back to top 
Page 1 of 1

 Similar topics

-
» Membuat Dynamic Title
» Show date and Clock in java Frame
» Canvass Form
» SHF New Den-O Strike Form REISSUE!!!!!!!11111ONE
» CS: Best Form Of Copper?

Permissions in this forum:You cannot reply to topics in this forum
OnlineKnowledgeRepository :: All About PC :: Programming :: VB.NET-