Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Paging Page Somenumber
Message
De
13/07/1998 19:12:39
 
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00116970
Message ID:
00116973
Vues:
14
If This is the PageFrame object, than here you have two versions of what you're looking for:
with This
	for each loPage in .Pages
		if loPage.Caption = blabla
			Do some code here
		endif
	endfor
endwith

or, using a "standard" FOR:

with This
	for lnI = 1 to .PageCount
		lcPage = "Page" + ltrim( str( lnI, 2))
		if .&lcPage..Caption = blabla
			Do some code here
		endif
	endfor
endwith
Vlad
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform