Search found 24 matches: omemo

Return to advanced search

Box rtf on a folder

Image

oFolder:aDialogs[3]:bInit := {|| oMemo:LoadFromRTFFile( "table.rtf" ) }

@ 10, 3 RICHEDIT5 oMemo OF oFolder:aDialogs[3] PIXEL SIZE 200, 200 READONLY


why do I see the source file and not the rtf file in the richedit5 box?
by Silvio.Falconi
Thu Jan 25, 2024 10:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Box rtf on a folder
Replies: 0
Views: 478

Re: Create a Panel width a text

... //panel for the text oItem2:=Tpanel():New( 2, 2,; oItem1:nBottom-45,oItem1:nWidth-4, oItem1) oItem2:SetBrush( oBrushtext ) //the text @ 5,o10 SAY oMemo VAR cMessageMemo of oItem2 ; SIZE oItem2:nwidth-40,oItem2:nBottom-10 PIXEL ; FONT oFontText TRANSPARENT UPDATE How I can calculate the nbottom ...
by Silvio.Falconi
Thu Jan 04, 2024 10:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Create a Panel width a text
Replies: 29
Views: 3188

Re: Definir font richedit5

... nBottom, nRight ) local oFont, oDlg local hDLL local uTemp := If( ! Empty( cText ), cText, '' ) local lRich := .F., lGTF := .F., lOk := .F. publ oMemo DEFAULT nTop := 9, nLeft := 9, nBottom := 27, nRight := 71.5, ; cTitle := "RichEdit5" * DEFINE FONT oFont NAME "Arial" SIZE ...
by jpcavagnaro
Tue Dec 26, 2023 11:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Definir font richedit5
Replies: 3
Views: 603

Richedit5 controlar salida sin guardar

... el texto y salieron por la X sin guardar, se puede? Static Function RichEdit5( cText, cTitle, nTop, nLeft, nBottom, nRight ) local oFont, oDlg, oMemo local hDLL local uTemp := If( ! Empty( cText ), cText, '' ) local lRich := .F., lGTF := .F., lOk := .F. DEFAULT nTop := 9, nLeft := 9, nBottom ...
by jpcavagnaro
Tue Mar 21, 2023 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit5 controlar salida sin guardar
Replies: 0
Views: 169

Re: How to show a large text

Antonio Linares wrote:Hakan,

Please try this from the ON INIT of the dialog:

oMemo:LimitText( -1 ) // No text size limits

Also you may try using the FWH function RichEdit() instead of MemoEdit()


Thank you. It seems it works.
by Horizon
Thu Dec 31, 2020 6:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to show a large text
Replies: 17
Views: 2342

Re: How to show a large text

Hakan,

Please try this from the ON INIT of the dialog:

oMemo:LimitText( -1 ) // No text size limits

Also you may try using the FWH function RichEdit() instead of MemoEdit()
by Antonio Linares
Thu Dec 31, 2020 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to show a large text
Replies: 17
Views: 2342

Re: Getting the texxt of an RichEdit control

René,

I have implemented a new Method:

oMemo:GetRTF() --> cRTF

that should return the RTF string

I have emailed you the modified FiveMac libs
by Antonio Linares
Wed Nov 02, 2016 4:31 pm
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: Getting the texxt of an RichEdit control
Replies: 4
Views: 1344

Re: Richedit( ) function problems

... NOBORDER ; ACTION If( ! Empty( bSave ), Eval( bSave, oRtf:SaveAsRTF() ),) ... ACTIVATE DIALOG oDlg CENTERED ; ON INIT ( BuildRichEditBar( oDlg, oMemo, { | c | cText := c } ), oDlg:ReSize() ) The missing bitmaps are not yet implemented. For now you have to provide these resources yourself: "Left", ...
by Antonio Linares
Sat Jun 25, 2016 8:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Richedit( ) function problems
Replies: 27
Views: 6800

Re: ribbon+oPanel+Xbrowse+TASKPANEL

... para nada. Se crea el control de la izquierda. En re.prg: oTree = TTreeView():New( 2, 0, oWndRC ) Se crea el control de la derecha: @ 0, 25.7 GET oMemo VAR cItemText MEMO OF oWndRC SIZE 300, 100 Y finalmente el splitter que controlará a ambos y se le envia el mensaje de ajustar el area de ambos ...
by Antonio Linares
Wed Dec 03, 2014 4:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ribbon+oPanel+Xbrowse+TASKPANEL
Replies: 3
Views: 1477

Re: FiveDBU

... And this little change in FWH function MemoEdit() (source\function\memoedit.prg line 56): If( bText != nil, oMemo:SetText( Eval( bText, oDlg ) ),),; And here you have it :-) https://bitbucket.org/fivetech/screenshots/downloads/fivedbu_copy_to_clipboard.jpg
by Antonio Linares
Wed Jul 02, 2014 6:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FiveDBU
Replies: 4
Views: 843

Re: Copiar Registro o Fila de un Browse.

... hacer en varios pasos en forma oculta al usuario, primero grabas el registro en un memo, luego seleccionas el memo, y lo copias al portapapel con oMemo:copy(), y luego lo pegas donde te haga falta con oHoja:past(). No lo probe pero de acuerdo a los samples creo que es posible. Buscate en los samples ...
by Marcelo Roggeri
Mon Jul 16, 2012 4:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Copiar Registro o Fila de un Browse.
Replies: 7
Views: 1173

Max Length of a GET

Hi, Is there a maximum length for a GET? @ 10 , 1 GET oMemo VAR cMemo OF oDlg MEMO I use a MEMO GET to log activity of a procedure and Add every new files FUNCTION ELEFILE( cFile , oProgr ) LOCAL nLinee := mlcount( oProgr:gettext() ) LOCAL nPosEnd := ...
by MarcoBoschi
Fri Mar 04, 2011 10:15 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Max Length of a GET
Replies: 2
Views: 609

Re: Memo problem

... and if the last key pressed is an up/down arrow focus is moved to the next or previous control. I fixed this problem by adding oDate:oJump := oMemo to the beginning of the button action. Randal
by Randal
Fri Dec 17, 2010 4:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Memo problem
Replies: 1
Views: 557

Re: How to insert a TAB in TMultiGet using the keyboard

Enrico,

Please be ware that if you want to insert Tabs then you will not able to use Tab to give focus to the next control.

I would try it this way:
oMemo:nDlgCode = DLGC_WANTALLKEYS
by Antonio Linares
Tue Jan 05, 2010 7:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to insert a TAB in TMultiGet using the keyboard
Replies: 4
Views: 647

Re: Juan Planelles Lazaga

... ACTIVATE DIALOG oWnd2 CENTER return nValue *------------ * function MemoEdi2( cText, nTop, nLeft, nBottom, nRight, cTitle, lRead ) local oDlg2, oMemo, lAcept := .f., cMemo := cText // Respaldo .. local oBAcept, oBCancel DEFAULT nTop := 3, nLeft := 5, nBottom := 30, nRight := 70,; cTitle := "Memo ...
by Juan Planelles
Tue Dec 29, 2009 10:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6739
Next

Return to advanced search