Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
BUG: shift-tab don't work with a Form::Keypress
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Titre:
BUG: shift-tab don't work with a Form::Keypress
Versions des environnements
Visual FoxPro:
VFP 9
Divers
Thread ID:
01050170
Message ID:
01050170
Vues:
51
Expected: SHIFT+TAB Moves to the previous TabIndex control
PUBLIC oform1

oform1=NEWOBJECT("form1")
oform1.Show
RETURN

DEFINE CLASS form1 AS form

	DoCreate = .T.
	Caption = "Form1"
	Name = "Form1"


	ADD OBJECT command1 AS commandbutton WITH ;
		Top = 38, ;
		Left = 74, ;
		Height = 27, ;
		Width = 84, ;
		Caption = "Command1", ;
		Name = "Command1"


	ADD OBJECT command2 AS commandbutton WITH ;
		Top = 38, ;
		Left = 188, ;
		Height = 27, ;
		Width = 84, ;
		Caption = "Command2", ;
		Name = "Command2"


	PROCEDURE KeyPress
		LPARAMETERS nKeyCode, nShiftAltCtrl
		Form::KeyPress(m.nKeyCode, m.nShiftAltCtrl)
		NODEFAULT
	ENDPROC

ENDDEFINE
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform