TTreeView:OnKeyDown-two times
Publicado: Sab May 23, 2015 5:26 pm
Hi Ignacio,
When pressing F3, performs two times. This is a bug, right?
executes one time, correct!
When pressing F3, performs two times. This is a bug, right?
Código: Seleccionar todo
METHOD TreeView2KeyDown( oSender, nVKey ) CLASS TForm2
if nVKey = VK_F3
MsgInfo('F3')
endif
RETURN Nil
Código: Seleccionar todo
METHOD TreeView2KeyUp( oSender, nKey, nFlags ) CLASS TForm2
if nKey = VK_F4
MsgInfo('F4')
endif
RETURN Nil