how to display the reverse timer like in the quiuz program the clocks are role in 50,49,48....1. (time up)
i need the program for questienare with timer
any one help me.

Recommended Answers

All 2 Replies

you just need to run the counter backwards. (-1)

Try this trick;
1. At the upper most part of your form (i.e. General Decalaration area) add this code. So that the veriable count can be accessed anywhere in that form.

Dim count As Integer

2. Add a "Timer" to the form. Give it an interval of your choice. In it event procedure of the timer (i.e. Private Sub Timer1_Timer())add this code;

If count <> 0 then count = count - 1
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.