Jobs
Author: Vasu Date Submitted: 11/2/2006 Category: Graphics Compatibility: VB 6 This code has been accessed 4489 times.
Email Yourself this snippet:
No declarations
Code
'Before adding code set the below specified properties ' showInTask to false ' movable to false 'add a timer, and Interval should be 1000. Private Sub Form_Load() Form1.Caption = "..............." & Now & "................" End Sub Private Sub Timer1_Timer() Form1.Caption = "..............." & Now & "................." End Sub