Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to set focus on control with tabindex=1
Message
De
20/04/1999 13:27:37
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00210187
Message ID:
00210195
Vues:
41
>How do I set the focus to the control that has tabindex=1 ?

There is no direct way to do it. You can create a form method in oyur base form class that does it though:

Form.FirstControlSetfocus()
FOR EACH oControl IN THISFORM.Controls
	IF oControl.Tabindex = 1
		oControl.SetFocus()
	ENDIF
ENDFOR
Erik Moore
Clientelligence
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform