Subject dUFLP - Preview.wfm
From edward racht <e.racht@gmail.com>
Date Wed, 23 Dec 2020 07:26:49 -0500
Newsgroups dbase.getting-started

There are two doublebuffer statements in the following constructor code.

class previewForm of FORM
    with (this)
       onSize = class::FORM_ONSIZE
       onDesignOpen = class::FORM_ONDESIGNOPEN
       onClose = class::FORM_ONCLOSE
       open = class::OPEN
       readModal = class::READMODAL
       print = class::PRINT
       doubleBuffered = false
       metric = 0        // Chars
       height = 29.5909
       left = 16.7143
       top = -0.0909
       width = 129.2857
       text = "Report Previewer - ver. " + PROGRAMVERSION
       autoCenter = true
       icon = "resource #270"
       doublebuffered = true
    endwith

Should this be?

ed