Group Box Examples

Example 1. Disable or enable a group box.

IF boolEnable == true          

{

    gboxGroup1.Enable()

}

ELSE

{

    gboxGroup1.Disable()

}

Note:

Example 2. Hide or show a group box.

IF boolShow == false           

{

    gboxGroup1.Hide()

}

ELSE

{

    gboxGroup1.Show()

}

Note: