Form_KeyPress

In Form PicForm


   ! Dead procedure - KeyPreview property is False
  46 Private Sub Form_KeyPress(KeyAscii As Integer)
  47 
  48 If KeyAscii = 15 Then

   • Possibly commented-out code
  49     ' Ctrl+O = Open
  50     OpenFile_Click
  51 End If
  52 
  53 End Sub
  54 

Calls

> OpenFile_Click