timer

A simple Timer using C

Submitted by Arup Kr Goswami on
Hello, This C source code is written in gcc platform (Ubuntu, Linux). It is a simple timer, actually it counts the difference between the Set time (Set by user) & current time. Let the current time is hh-mm-ss of today, so it will run for maximum hh-mm-ss of tomorrow, i.e for 24 hours maximum. Thanks

Digital Clock

Submitted by ainaerik on
Simple Digital Clock in java swing. This app might can help you to create time and date using timer. You can also move this application by clicking the frame. To exit, double click on the frame. If you find this code useful, send me a feedback.

Displaying Digital and Analog Clock in VB.NET

Submitted by donbermoy on
Today, I will teach you how to create and display the digital and analog time. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2. Next, add two radioButtons named rbDigital and rbanalog. Insert also a timer named Timer1, add a label named Label2, and a webbrowser named WebBrowser1.

Using a Timer in Javascript

Submitted by GeePee on
In my previous project Changing Image Source, we change images by clicking. But what if we want to change them automatically and continuously? We have to use a timer on it. With just few lines of codes added in our previous project, we can make it work. var timer = setInterval('changeImg()', 3000); We will use setInterval method. Inside of it is the 2 arguments. First is the code that you want to

Timer in Visual Basic

Submitted by Yorkiebar on
Introduction: This tutorial is on how to create a timer in Visual Basic. Threads: Te first thing you must know about this tutorial is how to use threads. Threads are essentially processes which run certain parts of your programs code, the main thread handles the design of your form as well as the code of your form, therefore, when you have a lot of long-running code, your UI will freeze.

Creating a StopWatch in VB.NET

Submitted by donbermoy on
Stopwatch is a timepiece that can be started or stopped for exact timing as of a race or any activity. In this article, we will going to create a program that has the capabilities and control like a stopwatch. Now, let's start this tutorial! 1. Let's start with creating a Windows Form Application for this tutorial by following the following steps in Microsoft Visual Studio: Go to File, click New Project, and choose Windows Application. 2.

Traffic Light Program in VB6

Submitted by donbermoy on
Traffic Light is a road signal for directing vehicular traffic by means of colored lights, typically red for stop, green for go, and yellow for proceed with caution. Also called stoplight, traffic signal. In this tutorial, we will make a Traffic Light Program with the use only of shapes and timer. Now, let's start this tutorial! 1.