Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Modal Form with the Menu
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire de menu & Menus
Divers
Thread ID:
00120537
Message ID:
00120551
Vues:
17
>I have a situation where in my App a form must by Modal but I need the Help topic enable for the user.
>
>No problem I set in my menu the pad name _MSM_SYSTM and a bar# with _MST_HELP. then I use the Set Help to command to set the right Help file.
>
>Now my customer ask me to have under the Edit pad the option "Reset Selection" which will reset many check box. Is there a truc for that?

thisform.setall('value',0,'checkbox')???

< from online help >
Assigns a property setting on all, or a certain class of, controls in a Container object.

Syntax

Container.SetAll(cProperty, Value [, cClass])

Arguments

cProperty Specifies the property to be set.

Value Specifies the new setting for the property. The data type of Value depends on the property being set.

cClass Specifies the class name (the class on which the object is based, not the Visual FoxPro base class for the object).

Remarks

Use the SetAll method to set a property for all, or a certain class of, controls in a Container. For example, to set the BackColor property on all the Column objects in a Grid control to red, issue the following:

Form1.Grid1.SetAll("BackColor", RGB(255, 0, 0), "Column")

You can also set the properties for objects that are contained by other objects within the container. To set the ForeColor property of the Headers that are contained by each Column object contained in a Grid control to green, issue the following:

Form1.Grid1.SetAll("ForeColor", RGB(0, 255, 0), "Header")
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform