... in richedit, and than save it to a database field. Later I want to be able to edit again, but I cound wake it work. I get the text with vtext = oRich:SaveAsRTF Than save it repl tekstlengt with HB_CompressBuflen( Len( vtext ) )repl tekst with HB_Compress( vtext ) ...
... todo el contenido de la DBf y tu Texto enriquecido. De aqui en adelante solo muestra tu texto. DEFINE DIALOG oDlg RESOURCE "Test" oRich = TRichEdit():Redefine( 100, bSETGET( cTxt ), oDlg ) oRich:lHighLight = .T. Esta claro que es el contenido de la DBF. Esta DBF tiene 2 campos: ...
William, En tu texto richedit incluye este texto "<data>" y dale el font y atributos que quieras. Y desde tu código haz esto: oRich:LoadRTF( StrTran( oRich:SaveAsRTF(), "<data>", Date() ) ) Para unir el texto RTF de dos controles RichEdit haz esto: oRichEdit1:LoadRTF( ...
William, If your RTF text ends with "text." then you can do: oRich:LoadRTF( StrTran( oRich:SaveAsRTF(), "text.", "text. Hello world" ) ) There are other ways to do it. In order to learn where to insert the text do this: MsgInfo( ...
... example in SAMPLES with RTF from resources is TESTRICH.PRG but does not use RICHEDIT.CH It compiles and runs OK. If RICHEDIT.CH is included and: oRich = TRichEdit():Redefine( 100, { || "" }, oDlg ) is changed to: REDEFINE RICHEDIT oRich ID 100 OF oDlg the program compiles but aborts ...
Antonio, Creo saber cuando se ocasiona el fallo. Yo hago oRich:preview("Presupuesto") y algunos los puedo exportar perfectamente a PDF, pero si el Rich tiene más de quince líneas AHÍ SE CUELGA el exportar a PDF . De lo anterior, deduzco que ...