Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
A very simple form refresh question
Message
From
03/12/2003 08:00:36
Lutz Scheffler
Lutz Scheffler Software Ingenieurbüro
Dresden, Germany
 
 
To
03/12/2003 07:49:01
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00855354
Message ID:
00855372
Views:
17
Cetin,

PMFJI

What happens to your code if there is no form named 'mani'? Why not:
for ix=1 to _screen.forms.count
 if lower(_screen.forms[ix].name) = "mani"
    _screen.forms[ix].REFRESH()
    exit
 endif
endfor
?

Agnes
>>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
Words are given to man to enable him to conceal his true feelings.
Charles Maurice de Talleyrand-Périgord

Weeks of programming can save you hours of planning.

Off

There is no place like [::1]
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform