Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
101 VFP7 Things, Part 4
Message
De
06/12/2000 22:02:59
 
 
À
06/12/2000 20:10:38
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Divers
Thread ID:
00449869
Message ID:
00450207
Vues:
44
>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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform