Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Commanding pages
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00117842
Message ID:
00117846
Vues:
12
>In another post, I asked about adding pages programatically. Now I have a related problem. I want these pages to have code in their activate methods.
>
>How can I programatically add code to a newly created page?
>
>Thanks,
>
>-Michelle

Michelle,

The short answer is that you can't. You can, however, create a page class in a prg file and use that to add pages to your pageframe.
* MyPages.prg
DEFINE CLASS MyPage AS Page
  PROCEDURE Activate
     * Put your code here

  ENDPROC
ENDDEFINE
Then when you want to add pages to a pagefraem at runtime you can;
IF NOT "MyPages.prg" $ SET("PROCEDURE")
   SET PROCEDURE TO MyPages.prg ADDITIVE
ENDIF
THISFORM.PageFrame1.AddObject("PageName","MyPage")
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform