Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
A very simple form refresh question
Message
De
03/12/2003 07:49:01
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00855354
Message ID:
00855370
Vues:
13
>Hi
>
>Very simple question - I normally refresh forms with thisform.refresh but the form I need to refresh is not the form that has focus
>
>Its name is mani
>
>mani.refresh doesn't work - what is the correct syntax?
>
>Thanks
>
>Colin

Colin,
Is mani object reference name or just form's name ?
You need the object reference.
If mani is a single unique name among all forms on screen then you might find out its obhject reference traversing _screen.forms collection. ie:
(roughly)
for ix=1 to _screen.forms.count
 if lower(_screen.forms[ix].name) = "mani"
    oMani = _screen.forms[ix]
    exit
 endif
endfor
*...
oMani.refresh
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform