i am a newbie to the vb timer control..can any one give me few samples of vb timer usage and yeah one more thing how to make a progress bar using timer..:|

Recommended Answers

All 5 Replies

Dim strA As String
Dim strB As String
Dim strC As String
Dim lenstr As Integer
Dim I As Integer

lenstr = 0
strA = ""
strB = ""
strC = ""


lenstr = Len(Me.Caption)
strA = Left(Me.Caption, 1)
strB = Right(Me.Caption, lenstr - 1)
strC = strB & strA

Me.Caption = strC

ProgressBar1.Value = Rnd * 100

where shud i type this code. i want to create the progress bar with the timer

i am a newbie to the vb timer control..can any one give me few samples of vb timer usage and yeah one more thing how to make a progress bar using timer..:|

check out this sample program.
get me your feedback please.

regards
Shouvik

Timer is one of the easiest controls to code. It has the minimum properties and responds to timer event of the control.

ho about in web application? progress bar?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.