Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Setting multiple object properties on a page
Message
 
To
25/06/2002 08:38:46
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00671959
Message ID:
00671965
Views:
17
>I have a two page form where I allow access to the second page only when the user makes a selection from a listbox and clicks on an edit button. When they click on the button the click event sets focus to the second page. On the second page's SetFocus event I want to make a test and enable or disable all objects on the second page based on the test. I tried to do this with the following code:
>
> m.llAllowEdits = TestForRights(THISFORM.Name)
>
> WITH THISFORM.pgfFrame.pagPage2
>
> .Enabled = m.llAllowEdits
> .ForeColor = RGB(128,0,0)
>
> ENDWITH
>
>The RGB() change was only to see if the change was taking place. The only thing that seems to have been modified was the pagPage2 properties, not any of the textboxes, labels, etc. on the page. My question is: is there any way to do this without having to name each and every one of the objects I want to affect?

check out
THISFORM.pgfFrame.pagPage2.SetAll("Enabled", .T.)
Caroline
Previous
Reply
Map
View

Click here to load this message in the networking platform