Keyboard timer: GetTickCount : Windows API « Windows « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Windows » Windows APIScreenshots 
Keyboard timer: GetTickCount
Keyboard timer: GetTickCount
   

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;

public class KeyTimer : System.Windows.Forms.Form {
    private System.ComponentModel.Container components = null;
    private uint start = 0;
    private uint stop = 0;

    [DllImport("kernel32.dll")]
    public static extern uint GetTickCount();

    public KeyTimer() {
    }

    [STAThread]
    static void Main() {
        Application.Run(new KeyTimer());

    }

    protected override void OnKeyDown(KeyEventArgs args) {
        start = GetTickCount();
    }

    protected override void OnKeyUp(KeyEventArgs args) {
        stop = GetTickCount();
        uint elapsed = (stop - start);
        MessageBox.Show(Convert.ToString(args.KeyData", time elapsed: " + Convert.ToString(elapsed" msecs");
    }
}

   
    
  
Related examples in the same category
1.DLL: GetVersionEx
2.BitBlt
3.Get the Total Free Space on a Drive by using kernel32.dll
4.imports three functions to display the vertical and horizontal size of the screen.
5.MessageBox from user32.dll
6.Get OS Version from kernel32.dll
7.imports the printf function
8.import CreateDirectory and FormatMessage
9.marshals string for unmanaged memory as ANSI.
10.imports the GetModuleHandleW function specifically
11.Set mouse and keyboard hooks.
12.Sound Utils
13.Returns the HRESULT associated with the given error code.
java2s.com  |  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.