CSPrograms4u
Nothing Succeeds Like Success
Home
About
C
Programs
Numbers
Patterns
Conversions
C Practical File
PPTs
CPP
Programs
PPTs
CG
Programs
PPTs
DS
Programs
PPTs
Python
Programs
Java
Programs
PPT
Practical File
C#
Programs
PPTs
VB
Programs
PPTs
VB 2010
Programs
PPTs
Sunday, 11 March 2018
Stop Watch in Visual Basic
Dim StartTime
Private Sub Command1_Click()
StartTime = Now
Timer1.Enabled = True
End Sub
Private Sub Command2_Click()
Timer1.Enabled = False
End Sub
Private Sub Display_DblClick()
StartTime = Now
End Sub
Sub Timer1_Timer()
Display.Caption = Format$(Now - StartTime, "hh:mm:ss")
End Sub
No comments:
Post a Comment
Note: only a member of this blog may post a comment.
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Followers
Total Pageviews
Popular Posts
List of Python Programs
List of Python Programs 1. Compute sum, subtraction, multiplication, division and exponent of given variables input by the user. ( Theo...
Programming in JAVA
Following are some Java Programs :- 1. Program to print Hello on the Screen ( Program ) 2. Use of main and other function ( Program...
Programming in CG Using C
Following are some Computer Graphics Programs using C Language :- 1. Different Mathematical Shapes ( Program ) 2. Bar Chart Step by...
Python Program : 1 : Compute sum, subtraction, multiplication, division and exponent of given variables input by the user.
PROGRAM : - a = int(input("Enter First integer value : ")) b = int(input("Enter Second integer value : ")) print("S...
No comments:
Post a Comment
Note: only a member of this blog may post a comment.