02-29-92  v1.0  Initial release.

03-25-92  v1.1  Changed NEDEMO.PAS to correct an error in
                declaring Current_Screen_Mode.  Changed this
                from a CONST to a VAR declaration and set its
                initialization in TEditDemo.Init

                Changed references to Current_Video_Mode in
                NEDEMO.PAS comments to Current_Screen_Mode.
                Missed this when cleaning up the code for the
                initial release.

06-09-92  v1.2  Added a demonstration on how to close and reopen
                a PEditWindow based on a spell check demo.  Had
                to add code to NEDEMO.PAS, EDITPKG.PAS, and to
                CMDFILE.PAS to do this.

                Changed the order of disabling commands in NEDEMO
                INIT procedure so the NEWEDIT commands came last
                in the disabling sequence.  Did this for cosmetic
                reasons.

                Run the MS-DOS FC program if you want to catch
                all the changes and redirect the output to a
                filename of your choice.

08-13-92  v1.3  Corrected a bug that would lock the system if a
                TMemo buffer was full and you tried to do a wrap.
                This involved adding a line in the methods
                TEditor.Do_Word_Wrap and TEditor.Newline in
                NEWEDIT.PAS.  Added a note in the NEWEDIT.DOC
                file under TVFORMS DEMO AND PDEMO OBJECT describing
                why TMemo fields won't wrap properly sometimes.

                Changed PROCEDURE TEditor.Newline to a FUNCTION
                in NEWEDIT.PAS.  Did this to allow easier expansion
                in the future.

                Removed HelpCtx line in function Open_Editor in
                EDITPKG.PAS  This was done to allow toggling of
                the StatusLine when Ctrl, Alt, or Shift are
                pressed while an editor window is open.

                Fixed help contexts in CMDFILE.PAS.  The wrong
                help was showing up when pressing F1 on check
                boxes.

                Run the MS-DOS FC program on the programs cited
                above if you want to catch all the changes and
                redirect the output to a filename of your choice.

12-11-92  v2.0  This revision is a quick conversion of Al's code to
                compile with BP 7.0. I'm putting it up on the forum
                because a number of people have asked me to do so.
                I have tried to keep Al Anderson's code and comments
                as intact as possible. The only thing I couldn't get
                to work is his new color scheme.

                I have attempted to merge in all of the new stuff from
                Borland's new editor unit. This includes the treatment
                of the dialog boxes inside the editor unit itself, and
                the use of the slightly changed memory scheme. This
                involved moving alot of code around.

                New BP commands are used where appropriate although
                I probably missed a number of places where I could
                have made it more 7.0ish. Mostly this is stuff like
                using inherited, assigned and executedialog.

                I also used StdWindowMenuItems in constructing the
                ~W~indow menu option. The 'Close All' menu option does
                nothing right now. I did not implement
                StdFileMenuItems although it would probably be a good
                idea.

                Alec Bergamini