Subject TextLabel
From Steven Ellis <sjellis232@gmail.com>
Date Fri, 14 Jan 2022 13:56:04 -0500
Newsgroups dbase.getting-started

I believe this is a bug.
For N = 1 to 10
        mvSummaryNMinVis = "form.Summary"+N+"min.visible"
        mvSummaryNMaxVis = "form.Summary"+N+"max.visible"
        mvSummaryNAvgVis = "form.Summary"+N+"Avg.visible"
        mvSummaryNWAvgVis = "form.Summary"+N+"WAvg.visible"
        &mvSummaryNMinVis. = false
        &mvSummaryNMaxVis. = false
        &mvSummaryNAvgVis. = false
        &mvSummaryNWAvgVis. = false
        ? &mvSummaryNMinVis.
        ? &mvSummaryNMaxVis.
        ? &mvSummaryNAvgVis.
        ? &mvSummaryNWAvgVis.
//Calculations are done then I want to make the text label visible

These return all false and hides the textlables

        &mvSummaryNMinVis. = true
        &mvSummaryNMaxVis. = true
        &mvSummaryNAvgVis. = true
        &mvSummaryNWAvgVIs. = true
        ? &mvSummaryNMinVis.
        ? &mvSummaryNMaxVis.
        ? &mvSummaryNAvgVis.
        ? &mvSummaryNWAvgVis.
next n
These return all true but the textlabel is still hidden.  I also tried setting the text of the
textlabel to "" and it has no effect.