Search found 133 matches: memoline

Return to advanced search

Imprimir una linea con varias fuentes. - SOLUCIONADO

... normal, he estado haciendo pruebas y revisando el foro, pero no consigo hacerlo pongo la linea que necesito imprimir. oPrn:cmSay( linea,3.6,memoline(alltrim((cpptod)->codigo)+" - "+alltrim((cpptod)->concepto),nlongitudlineat,nlineactualt),oFont) He intentado esto : Imprimir ...
by Garbi
Thu Jul 08, 2021 10:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir una linea con varias fuentes. - SOLUCIONADO
Replies: 4
Views: 395

Re: Xbrowse : Setup configuration file

... "表格设置:" ACTION tablesethelp(self) MENUITEM "删除/隐藏/恢复栏位" MENU for nFor := 1 to nLen oCol := ::aCols[ nFor ] cPrompt := Trim( MemoLine( if(VALTYPE(oCol:cHeader)=="C",oCol:cHeader,EVAL(oCol:cHeader)), 250, 1 ) ) MenuAddItem( cPrompt, , !oCol:lHide, ( len(::aDisplay) ...
by ShumingWang
Sat Apr 17, 2021 12:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Setup configuration file
Replies: 5
Views: 1297

COMO ABRIR UNA WEB CON CHROME

... CATCH oError WaitOff( @oWait ) RETURN mResultado END nLine:= MLCOUNT(cCode,,3,.t.) iLinea := 0 For a:= 1 To nLine SysRefresh() linetxt:=Rtrim(memoline(cCode,80,a,3,.t.)) If Left(Rtrim(linetxt),6)="Sábado" iLinea := a+1 Exit EndIf Next ntxt:="" ltcambio := .F. otxt:=FCreate( ...
by CARLOS ATUNCAR
Fri Dec 18, 2020 1:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: COMO ABRIR UNA WEB CON CHROME
Replies: 2
Views: 827

Re: Reporte con Doble Renglon

... SIZE 35 FONT 2 _ccCadena2 := SubStr(aDatDetalle[nRegis,3],I+1) EXIT ENDIF NEXT It is much easier to use MLCount() and MemoLine() nLines := MLCount( cText, nLen ) cLine1 := MemoLine( cText, nLen, 1 ) cLine2 := MemoLine( cText, nLen, 2 )
by nageswaragunupudi
Sun Nov 01, 2020 7:53 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Reporte con Doble Renglon
Replies: 5
Views: 852

Re: Cambiar altura area Easy Report Tiempo Ejecución

Excelente Armando, muchas gracias :D

Funciono a las mil maravillas.

Desconocía la existencia de las funciones MLCOUNT() y MEMOLINE().

Pdta. No me había quedado tiempo de mirar el código. Hemos estado un poco ocupados con el tema de la facturación electrónica.
by leandro
Fri Jan 31, 2020 2:22 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambiar altura area Easy Report Tiempo Ejecución SOLUCIONADO
Replies: 12
Views: 2328

Re: New FWH 19.03

... long "disclaimer" on this invoice. It starts on page two but will need to run over to page 3. Since I print one line at a time with the memoline output, after each line I can check to see if I've reached the maximum lines per page, and then I can do a page eject, print the new header, ...
by TimStone
Fri Apr 12, 2019 1:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.03
Replies: 37
Views: 5182

Re: New FWH 19.03

... nRow, 2 * nCsp, cDisText, 7.0 ,nil, oFcond, , CLR_RED, nil , "INCHES" )  Using the format previously ( parsing and printing with memoline ), oFcond is fine as a condensed print font. (. DEFINE FONT oFcond NAME "Courier New" SIZE 0, -8 OF oPrn ) Thanks Please make sure ...
by nageswaragunupudi
Thu Apr 11, 2019 11:52 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.03
Replies: 37
Views: 5182

Re: New FWH 19.03

... 2 * nCsp, cDisText, 7.0 ,nil, oFcond, , CLR_RED, nil , "INCHES" )  Using the format previously ( parsing and printing with memoline ), oFcond is fine as a condensed print font. (. DEFINE FONT oFcond NAME "Courier New" SIZE 0, -8 OF oPrn ) Thanks
by TimStone
Thu Apr 11, 2019 5:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.03
Replies: 37
Views: 5182

Re: New FWH 19.03

This is off-topic. For printing long multiline texts, memos, it is no more necessary to split the text into separate lines with memoline() and print each line separately. With a single call to the method SayText() the entire memo can be printed. This is a sample: #include "fivewin.ch"function ...
by nageswaragunupudi
Thu Apr 11, 2019 1:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 19.03
Replies: 37
Views: 5182

Re: Como Puedo Imprimir Campo Memo FPT

... line_cnt:=mlcount(texto1,105) curr_line:=1 do while curr_line<=line_cnt if l>nsalto*60 ENDPAGE PAGE xmarca:=0 T01001() endif print_line:=memoline(texto1,105,curr_line) olis:say(l,ncolum * 5,print_line,oFont) curr_line:=curr_line+1 l:=l+nsalto enddo l:=l+nsalto l:=l+nsalto texto2:=1->medicam ...
by pedroluis
Wed Mar 06, 2019 1:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imprimir Campo Memo FPT AYUDA URGENTE Para Cesar Gomez
Replies: 14
Views: 2782

Re: String manipulation

Hi Jeff,

have you tried the MemoLine() function + PadR()? I think it will do what you are looking for.

KR

Carlos
by Carlos Mora
Wed Aug 08, 2018 6:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: String manipulation
Replies: 3
Views: 672

Re: Columna de Report con Memoline

Solucionado usando el ejemplo rep20.prg de los samples\report

Code: Select all  Expand view
COLUMN TITLE "Concepto"  DATA alltrim((ctemporal)->concepto) MEMO  size 80


Un saludo
by Garbi
Fri Jun 22, 2018 11:24 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Columna de Report con Memoline
Replies: 1
Views: 277

Columna de Report con Memoline

... ¿alguna sugerencia? nlineas:=MLCOUNT(alltrim((ctemporal)->concepto),50)         COLUMN TITLE "Concepto"  DATA memoline(alltrim((ctemporal)->concepto),50,nlineas)
by Garbi
Fri Jun 22, 2018 9:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Columna de Report con Memoline
Replies: 1
Views: 277

Re: funciones de FWH y Harbour en un archivo .txt

... MemoLine(<cString>,[<nLineLength>],[<nLineNumber>],[<nTabSize>],[<lWrap>],[<lLongLines>],[@<nOffSet>])->cLine ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5855

Re: funciones de FWH y Harbour en un archivo .txt

... LastRec Left Len LenNum LoadLibrary Log Log10 Lower LtoN LTrim LUpdate MakeDir Mantissa Max MaxCol MaxLine MaxRow MCol MDblClk MDY MemoEdit MemoLine MemoRead Memory MemoTran MemoWrit MemvarBlock MHide MilliSec Min Minute MLCount MLCToPos MLeftDown MLPos Mod Month MPosToLC MPresent MRestState ...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5855
PreviousNext

Return to advanced search