【激安】東芝 NB100 Part7【ノートPC】

このエントリーをはてなブックマークに追加
107[Fn]+[名無しさん]
誤った情報が流布されてるな。ITmediaが震源地か、嘘が広まってITmediaも本当だと信じ込んでしまったのか。
俺と同じ事言ってる人がいるぜ。ちゃんと証明もしてくれてる。

http://edcforum.okwave.jp/qa2921249.html
#1を答えた後に気になったので。きちんと動いているか自信がない。

というのも
ITmedia記事中には
>間隔はプロパティ上の最高値「31」を越える値も設定可能だ
とあるが
MSDN Library2 - System.Windows.Forms.SystemInformation.KeyBoardSpeed Property
Property Value
The keyboard repeat-speed setting, 【from 0 (approximately 2.5 repetitions per second) through 31 (approximately 30 repetitions per second).】
Remarks
This property indicates the time between each keystroke repeat message that is sent when a user presses and holds a key down. This is a value
【in the range from 0 (approximately 2.5 repetitions per second) through 31 (approximately 30 repetitions per second). 】
The actual repeat rates are hardware-dependent and may vary from a linear scale by as much as 20%.

という記述があるから。
ちなみにコントロールパネルでの設定と異なりレジストリの値を変更しても再ログオンするまでは以下のプログラムが表示する値は変化しなかった。
(Windowsアプリケーション)

Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
MessageBox.Show(System.Windows.Forms.SystemInformation.KeyboardSpeed.ToString)
End Sub
End Class

レジストリ値を50にして再ログオンして確かめたところ,このアプリケーションは31という値を返したことを付記しておく。