■No31702 (魔界の仮面弁士 さん) に返信 >>Dim d As String >>d = txt(1).Text > txt は、TextBox の「コントロール配列」なのでしょうか? コントロール配列になっております。
> KeyPress イベントの引数を良く見てください。『KeyAscii As Integer』になっていますよね。 仰るとおり、型がそもそも違っておりました。
> 書くとすれば、 > Private Sub txt_KeyPress(Index As Integer, KeyAscii As Integer) > KeyAscii = Asc(UCase(Chr(KeyAscii))) > End Sub > のようになるでしょう。 有難うございます。 出来ました^^
> であれば、こんな感じで。 > Private Sub txt_KeyPress(Index As Integer, KeyAscii As Integer) > If KeyAscii = Asc("’") Then > KeyAscii = 0 > End If > End Sub