Built-in text editor
Built-in text editor
Hello,
I need to embed in your program text editor for RTF files. Can I use any ActiveX editor or do I need to create a RichEdit ?
I need to embed in your program text editor for RTF files. Can I use any ActiveX editor or do I need to create a RichEdit ?
- nageswaragunupudi
- Posts: 10702
- Joined: Sun Nov 19, 2006 5:22 am
- Location: India
- Been thanked: 6 times
- Contact:
Re: Built-in text editor
Please, To see how the main features of the Richedit control are implemented, see the examples TestRtf.prg and TestRtf5.prg (this example explains how to insert a table) into the samples folder of Fivewin
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Re: Built-in text editor
I've looked at examples with RichEdit and wrote the editor. But there are no examples for working with tables.
Many years ago there was a class TAppBox (for embedding other applications in your window).
Many years ago there was a class TAppBox (for embedding other applications in your window).
- Antonio Linares
- Site Admin
- Posts: 42395
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Has thanked: 10 times
- Been thanked: 41 times
- Contact:
Re: Built-in text editor
Natter wrote:I've looked at examples with RichEdit and wrote the editor. But there are no examples for working with tables.
Many years ago there was a class TAppBox (for embedding other applications in your window).
Which version of Fw do you use?
Do not have the example TestRtf5.prg in the samples folder?
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Re: Built-in text editor
Use the example TestRtf5.ptg. I can not inser a table. All works correctly but table doesn't appear.
FW 17.12
FW 17.12
Re: Built-in text editor
Please try with
or
and tell me
Code: Select all | Expand
oRtf:InsertTable( nRows, nCols )
or
Code: Select all | Expand
oRtf:aTableFormat[ 1 ] := nRows
oRtf:aTableFormat[ 2 ] := nCols
oRtf:aTableFormat[ 3 ] := 20
oRtf:aTableFormat[ 4 ] := 60
oRtf:aTableFormat[ 5 ] := 0
oRtf:aTableFormat[ 6 ] := CLR_WHITE
oRtf:aTableFormat[ 7 ] := CLR_BLACK
//{ nRows, nColumns, nHeightRows, nWidthColumn, nAlign, nColor1, nColor2 )
RTInsertTable5( oRtf:hWnd, oRtf:aTableFormat )
and tell me
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Re: Built-in text editor
I even rewrote (overread) method InsertTable() in your program. RTInsertTable5() returns TRUE. All good, but table is not inserted
Re: Built-in text editor
Please look
Cristobal Navarro
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces
Hay dos tipos de personas: las que te hacen perder el tiempo y las que te hacen perder la noción del tiempo
El secreto de la felicidad no está en hacer lo que te gusta, sino en que te guste lo que haces