BOTAO DELETE
Olá, eu estou usando vb6 para criar um editor de mapas, criei uma opção para colocar NPC[ô]s no mapa, e estou tentando fazer com que possa deletar esses npcs criados, só que o botão [Ô]Delete[Ô] não está funcionado, eu tentei o seguinte código:
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyDelete Then
MsgBox [Ô]Funcionou![Ô]
End If
End Sub
Mas não está funcionando, só funciona quando eu pressiono a tecla [Ô].[Ô] no teclado.
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = vbKeyDelete Then
MsgBox [Ô]Funcionou![Ô]
End If
End Sub
Mas não está funcionando, só funciona quando eu pressiono a tecla [Ô].[Ô] no teclado.
set keypreview do form para true ! e use assim que funfa !
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 46 Then
MsgBox mystr & [Ô]Funcionou![Ô] & KeyCode
End If
End Sub
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
If KeyCode = 46 Then
MsgBox mystr & [Ô]Funcionou![Ô] & KeyCode
End If
End Sub
Obrigado, funcionou!
Tópico encerrado , respostas não são mais permitidas