Visualizzazione dei risultati da 1 a 6 su 6
  1. #1

    domandina veloce veloce Private Sub Form_KeyPress(KeyAscii As Integer)

    chi sa dirmi come si usa??

    Private Sub Form_KeyPress(KeyAscii As Integer)??
    io voglio far apparire un msg box on press "P"

    aiuto!!
    questo dice tutto

  2. #2
    Utente di HTML.it
    Registrato dal
    Sep 2002
    Messaggi
    54
    prova così:

    codice:
    Private Sub Form_KeyPress(KeyAscii As Integer)
        If KeyAscii = 80 Or KeyAscii = 112 Then
            MsgBox "hai premuto P"
        End If
    End Sub

  3. #3
    Private Sub Form_KeyPress(KeyAscii As Integer)

    If KeyAscii = 112 Then ' 112 corrisponde al tasto p
    msgbox "Hai premuto P"
    end if


    end sub

    ' invece di msg potresti anche cambiare la lettera premuta

    Private Sub Form_KeyPress(KeyAscii As Integer)

    If KeyAscii = 112 Then ' 112 corrisponde al tasto p
    KeyAscii = 97 ' di da A
    end if

    end sub

  4. #4

    grazie

    tnx
    questo dice tutto

  5. #5
    Utente di HTML.it
    Registrato dal
    Jun 2007
    Messaggi
    53
    ....se anche tu come me sei affetto da poltronite acutissima, e non vuoi sempre andare a cercare i corrispettivi codici ASCII di una lettera usa anzi che:

    code:--------------------------------------------------------------------------------
    Private Sub Form_KeyPress(KeyAscii As Integer)
    If KeyAscii = 80 Or KeyAscii = 112 Then
    MsgBox "hai premuto P"
    End If
    End Sub--------------------------------------------------------------------------------

    code:--------------------------------------------------------------------------------
    Private Sub Form_KeyPress(KeyAscii As Integer)
    If KeyAscii = Asc("P") Or Asc("p") Then
    MsgBox "hai premuto P"
    End If
    End Sub--------------------------------------------------------------------------------

    Bye.

  6. #6
    GRAzie anche a te!!!
    questo dice tutto

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.