[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: PDS - error when saving a Form

Status
Not open for further replies.
D

DenDuze

Guest
Yes I can but what will that help? I've tested again: - In OpenEdge Project - New - ABL form - make that new form larger and save (without doing something else = the error already occurs But if you think it may help I will post that code here (it's just the code generated for a new form) /*------------------------------------------------------------------------ File : TestForm Purpose : Syntax : Description : Author(s) : Created : Thu Apr 18 13:08:39 CEST 2019 Notes : ----------------------------------------------------------------------*/ using Progress.Lang.*. using Progress.Windows.Form. block-level on error undo, throw. class TestForm inherits Form: define private variable components as System.ComponentModel.IContainer no-undo. constructor public TestForm ( ): SUPER(). InitializeComponent(). this-object:ComponentsCollection:add(this-object:components). catch e as Progress.Lang.Error: undo, throw e. end catch. end constructor. method private void InitializeComponent( ): /* NOTE: The following method is automatically generated. We strongly suggest that the contents of this method only be modified using the Visual Designer to avoid any incompatible modifications. Modifying the contents of this method using a code editor will invalidate any support for this file. */ this-object:SuspendLayout(). this-object:Name = "TestForm". this-object:text = "TestForm". this-object:ResumeLayout(false). catch e as Progress.Lang.Error: undo, throw e. end catch. end method. destructor public TestForm ( ): end destructor. end class.

Continue reading...
 
Status
Not open for further replies.
Top