My long standing record is 1.76 seconds.
bollocks
Being serious, I've been programming for 21 years and can type like hell. A close competitor in my current work can get 2.3 seconds quite easily.
Why would I lie ?
Dougie.
edit : vb code for said program :-
Dim TotalTime As Double
Dim StartTime As Double
Dim Counter As Long
Const AlphaString = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Private Sub Text1_GotFocus()
Text1 = "Start Typing" + vbCrLf
Text1.SelStart = Len(Text1.Text) + 1
Counter = 0
End Sub
Private Sub Text1_KeyPress(KeyAscii As Integer)
Character = UCase$(Chr$(KeyAscii))
Counter = Counter + 1
If Counter = 1 And Character = "A" Then StartTime = Timer
If Character <> Mid$(AlphaString, Counter, 1) Then
KeyAscii = 0
Beep
Counter = Counter - 1
Exit Sub
End If
Text1 = Text1 + Character
Text1.SelStart = Len(Text1.Text) + 1
KeyAscii = 0
If Counter = 26 Then
TotalTime = Timer - StartTime
Text1 = Text1 + vbCrLf + vbCrLf + "You Took " + Trim$(Str$(TotalTime)) + " Seconds" + vbCrLf + vbCrLf
Text1.SelStart = Len(Text1.Text) + 1
Counter = 0
End If
End Sub