Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
101 VFP7 Things, Part 4
Message
From
06/12/2000 22:02:59
 
 
To
06/12/2000 20:10:38
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00449869
Message ID:
00450207
Views:
43
>Does VFP7 allows you to subclass the page in a pageframe control? Thanks.

You could do that in VFP6 too:

oForm = newobject('form')
oForm.AddObject('MyPageFrame', 'pageframe')
oForm.MyPageFrame.AddObject('Page1', 'mypage')
oForm.MyPageFrame.AddObject('Page2', 'mypage')
oForm.MyPageFrame.Visible = .t.
oForm.Show(1)
define class mypage as page
backcolor = rgb(255,0,0)
enddefine


But otherwise nothing new has been added.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform