|
|
The Tick Counter |
|
Overview |
![]() |
|
The .Net provides a special property used to count a specific number of lapses that have occurred since you started your computer. This information or counter is available through the Environment.TickCount property. This property provides the number of milliseconds that have elapsed since you started your computer. Just like the timer control, what you do with the result is up to you and it can be used in various circumstances. For example, computer games and simulations make great use of this function. After retrieving the value that this property provides, you can display it in a text-based control. |

package TickCounter;
import System.Drawing.*;
import System.Collections.*;
import System.ComponentModel.*;
import System.Windows.Forms.*;
import System.Data.*;
/**
* Summary description for Form1.
*/
public class Form1 extends System.Windows.Forms.Form
{
System.Windows.Forms.Button btnClose;
System.Windows.Forms.GroupBox groupBox1;
System.Windows.Forms.Label label2;
System.Windows.Forms.Label label1;
System.Windows.Forms.Timer timer1;
private System.ComponentModel.IContainer components;
System.Int32 CompTime;
public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
#region Windows Form Designer generated code
. . .
#endregion
/**
* The main entry point for the application.
*/
/** @attribute System.STAThread() */
public static void main(String[] args)
{
Application.Run(new Form1());
}
private void Form1_Load (Object sender, System.EventArgs e)
{
CompTime = Environment.TickCount;
}
}
|
private void timer1_Tick(object sender, System.EventArgs e)
{
long CurTickValue = Environment.TickCount;
long Difference = CurTickValue - CompTime;
label1.Text = String.Format("This computer has been ON for {0}", CurTickValue.ToString());
label2.Text = String.Format("This application has been running for {0}", Difference.ToString());
}
|
private void btnClose_Click(object sender, System.EventArgs e)
{
Close();
}
|

private void timer1_Tick(object sender, System.EventArgs e)
{
long CurTickValue = Environment.TickCount;
long Difference = CurTickValue - CompTime;
long ComputerHours, ComputerMinutes, ComputerSeconds;
long ApplicationHours, ApplicationMinutes, ApplicationSeconds;
ComputerHours = (CurTickValue / (3600 * 999)) % 24;
ComputerMinutes = (CurTickValue / (60 * 999)) % 60;
ComputerSeconds = (CurTickValue / 999) % 60;
ApplicationHours = (Difference / (3600 * 999)) % 24;
ApplicationMinutes = (Difference / (60 * 999)) % 60;
ApplicationSeconds = (Difference / 999) % 60;
label1.Text = String.Format("This computer has been ON for {0} hours, {1} minutes {2} seconds",
ComputerHours.ToString(),
ComputerMinutes.ToString(),
ComputerSeconds.ToString());
label2.Text = String.Format("This application has been running for {0} hours, {1} minutes {2} seconds",
ApplicationHours.ToString(),
ApplicationMinutes.ToString(),
ApplicationSeconds.ToString());
}
|
|
|
| Copyright © 2004 FunctionX, Inc. |
|
|