Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Paging Page Somenumber
Message
From
13/07/1998 19:12:39
 
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00116970
Message ID:
00116973
Views:
13
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform