Search found 1655 matches: memo

Return to advanced search

Re: Using FastReports FRH change memo2 from Memo1

Hello Karinha; On that page the only memo that gets updated on the preview (refreshed using fwh language) is the one from which the mouse click event gets called, that is also the object for which the "modified" variable belongs to. ...
by reinaldocrespo
Sun Apr 16, 2023 5:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using FastReports FRH change memo2 from Memo1
Replies: 2
Views: 316

Re: Forzar Ancho de línea en un campo Memo

Code: Select all  Expand view
oWnd:GetWidth( ctext, oFont ) --> nWidth
by nageswaragunupudi
Wed Apr 12, 2023 1:45 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Re: Forzar Ancho de línea en un campo Memo

funciona bien hasta que intentas modificar algo, ya que entonces no lo respeta ( normal ) Si, tal cual lo dices, no funciona cuando modificas, lo había visto. Creo que, como dices, debes ir analizando la cadena y haciendo de forma manual que cumpla el requerimiento. A mi humilde entender, no es una...
by VictorCasajuana
Tue Apr 11, 2023 8:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Re: Forzar Ancho de línea en un campo Memo

funciona bien hasta que intentas modificar algo, ya que entonces no lo respeta ( normal ) Si, tal cual lo dices, no funciona cuando modificas, lo había visto. Creo que, como dices, debes ir analizando la cadena y haciendo de forma manual que cumpla el requerimiento. A mi humilde entender, no es una...
by cmsoft
Sat Apr 08, 2023 4:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Re: Forzar Ancho de línea en un campo Memo

https://forums.fivetechsupport.com/viewtopic.php?f=3&t=42569&sid=69d117ede39f4731baa91e08b8dd8f79 https://forums.fivetechsupport.com/viewtopic.php?f=3&t=42971&sid=69d117ede39f4731baa91e08b8dd8f79 Regards. Karinha en los enlaces que me pasas veo la fun...
by VictorCasajuana
Sat Apr 08, 2023 3:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Re: Forzar Ancho de línea en un campo Memo

...   Local oGet    Local cVar := Space( 10000 )    DEFINE DIALOG oDlg;           SIZE 200,200       @1,1 GET oGet;         VAR cVar;         MEMO;         SIZE 90,70;         OF oDlg      ACTIVATE DIALOG oDlg CENTERED ON INIT oGet:LimitText(10)Return ( Nil ) Pero claramente ...
by VictorCasajuana
Sat Apr 08, 2023 3:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Re: Forzar Ancho de línea en un campo Memo

...   Local oGet    Local cVar := Space( 10000 )    DEFINE DIALOG oDlg;           SIZE 200,200       @1,1 GET oGet;         VAR cVar;         MEMO;         SIZE 90,70;         OF oDlg      ACTIVATE DIALOG oDlg CENTERED ON INIT oGet:LimitText(10)Return ( Nil ) Pero claramente ...
by cmsoft
Fri Apr 07, 2023 11:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Forzar Ancho de línea en un campo Memo

... He visto varios posts en el foro que tratan este tema pero no me acaba de funcionar. Necesito poder indicar el ancho de línea de un get de campo memo para que salte automáticamente a la siguiente línea cuando se supera. He probado el siguiente código: #include 'fivewin.ch'Function Main()  ...
by VictorCasajuana
Fri Apr 07, 2023 5:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Forzar Ancho de línea en un campo Memo
Replies: 8
Views: 752

Re: Sending HTML using MAIL

... - a contact or address book entry "IPM.Task" - a task or to-do item "IPM.StickyNote" - a sticky note or memo There are many other message classes defined in the MAPI specification, and custom message classes can also be defined by developers. When creating ...
by Antonio Linares
Wed Apr 05, 2023 6:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Sending HTML using MAIL
Replies: 10
Views: 701

Re: MEMO : EDIT or GET with MULTILINE

hi, i have to ask again if GET / EDIT MULTILINE under GUI are from "WC_EDIT" :?: i want to know if EM_* Constant can be used to "change" Position of Cursor in String i try this    nPosi := hb_at( UPPER( cFind ), UPPER( cMemo ), nStart )fwlog "suche .....
by Jimmy
Thu Mar 30, 2023 6:16 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MEMO : EDIT or GET with MULTILINE
Replies: 5
Views: 521

Re: MEMO : EDIT or GET with MULTILINE

hi Tim, it is not "special" for Logfile general i want to "look" into "Text" File like a Memo of *.FPT i also want to use a "Find" and/or "Replace" Dialog for Memo https://forums.fivetechsupport.com/viewtopic.php?t=42959 ...
by Jimmy
Tue Mar 28, 2023 8:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MEMO : EDIT or GET with MULTILINE
Replies: 5
Views: 521

Re: MEMO : EDIT or GET with MULTILINE

How are you creating your log file ? I actually have log databases and each entry is a record. Then I simply use the BROWSE( ) function to view it. That gives me the ability to edit, delete, print, etc.

Use a multiline GET with READONLY to view a plain text. It is a MEMO configuration.
by TimStone
Tue Mar 28, 2023 5:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MEMO : EDIT or GET with MULTILINE
Replies: 5
Views: 521

Re: MEMO : EDIT or GET with MULTILINE

hi, you are right that i can use Shellexecute() and use Notepad.EXE i´m still learning Fivewin to i got to that Point where i want to "edit" TEXT File 1st Question is which Control to use under Fivewin , EDIT or GET with MULTILINE :?: other Question belong to "working" with Contr...
by Jimmy
Tue Mar 28, 2023 10:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MEMO : EDIT or GET with MULTILINE
Replies: 5
Views: 521

Re: MEMO : EDIT or GET with MULTILINE

And you can't view the LOG file via Shellexecute ? :?
by Natter
Tue Mar 28, 2023 9:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MEMO : EDIT or GET with MULTILINE
Replies: 5
Views: 521
PreviousNext

Return to advanced search