Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Textbox showing old value
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00643700
Message ID:
00643804
Vues:
7
My advise would be not to use .MEM files. Store data in the table, INI file or registry, whatever is better for you.


>I have designed a form programatically as in the example vfp gives in the addobject help section. This is most of the prg I have. Problem is after I enter a new value, it gets saved to the mem variable ok but when I run the prg immediately afterward, the old value keeps appearing in the textbox.
>
>frmMyForm.AddObject('ctbox1','TBOXyes')
>restore from l:gooddate.mem addit  && var is mgooddate
>DEFINE CLASS tboxyes AS textbox  && Create Command button
>   value =  mgooddate
>   Left = 50  && Command button column
>   Top = 100  && Command button row
>   Height = 25  && Command button height
>   width=49
>   inputmask='99999'
>
>PROCEDURE keypress
>  para nkeycode,hello
>  if nkeycode=13
>    mgooddate=allt(thisform.cmdCmndBtn1.value)
>    save all like mgooddate to l:gooddate
>    releas cmdyes,cmdCmndBtn1
>    release mgooddate
>rest from l:gooddate.mem addit
>  CLEAR EVENTS  && Stop event processing, close Form
>  release thisform
>endi
>ENDDEFINE
--sb--
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform