//**************************************************************************** // $Module type: Package // $Module name: cRDCDbRichEdit.pkg // // $Author : Nils Svedmyr, RDC Tools International. // Copyright (c) 2019 RDC Tools International // E-mail : support@rdctools.com // Web-site : http://www.rdctools.com // // Bugfix : There seems to be a bug in the DAW cDbRichEdit class. // None of the usual arrow keys works (Up, Down, Left, Right). // // Created : 2019-01-25 @ 19:04 (Military date format - Year-Month-Day) // // The code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; // without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. // This is free software; you can redistribute it and/or modify it under the terms of the // GNU Lesser General Public License - see the "GNU Lesser General Public License.txt" // in the help folder for more details. // //**************************************************************************** Use cDbRichEdit.pkg Class cRDCDbRichEdit is a cDbRichEdit Procedure Construct_Object Forward Send Construct_Object On_Key Key_Right_Arrow Send Default_Key On_Key Key_Left_Arrow Send Default_Key On_Key Key_Up_Arrow Send Default_Key On_Key Key_Down_Arrow Send Default_Key End_Procedure Procedure End_Construct_Object Forward Send End_Construct_Object End_Procedure End_Class