Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
BUG: shift-tab don't work with a Form::Keypress
Message
From
16/09/2005 05:29:46
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
BUG: shift-tab don't work with a Form::Keypress
Environment versions
Visual FoxPro:
VFP 9
Miscellaneous
Thread ID:
01050170
Message ID:
01050170
Views:
49
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
Next
Reply
Map
View

Click here to load this message in the networking platform