Search found 54 matches: nline

Searched query: nline

by Silvio.Falconi
Wed Jan 01, 2025 7:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Using Tget and Cuebanner
Replies: 24
Views: 2220

Re: Using Tget and Cuebanner

... the RC eats up a lot of memory, using the rc file only for the images.

I arrived at a personal technique using simply nRow:=10, ncol=5 and nLine spacing =30 obviously nLine spacing changes depending on the fonts used. what do you have in mind in particular? do you have images from which to ...
by Silvio.Falconi
Tue May 14, 2024 7:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: send an email using the Outlook object
Replies: 5
Views: 1091

Re: send an email using the Outlook object

... recipient's address opened.

Best regards,
Otto


https://mybergland.com/fwforum/werbungemail.jpg



Otto,
with php

<?php
$message = "Line 1\r\nLine 2\r\nLine 3";
$message = wordwrap($message, 70, "\r\n");
mail('silvio.falconi@gmail.com', 'My Subject', $message);
?>


or with phpmailer

<form ...
by FiveWiDi
Mon May 13, 2024 9:12 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar slato de línea en una variable.
Replies: 5
Views: 1023

Re: Detectar slato de línea en una variable.

... proporcional), permet traballar per defecte amb el METHOD MEMO_20011212 (original
de la clase).
METHOD MEMO treballa en nombre de caràcters ( nLine ), o en CENTÍMETRES ( nCm )(*).

(*) nCm debe ser mayor de 2 para usarse.

* Al UtilPrn.ch afegida possibilitat de JUSTIFY i centímetres pel ...
by Antonio Linares
Sat Jul 17, 2021 10:05 pm
Forum: mod_harbour
Topic: Using source on other .prgs
Replies: 3
Views: 821

Re: Using source on other .prgs

... 0 AAdd&#40; aPRGs, &#123; cPrgName, ATail&#40; aPRGs &#41;&#91; 2 &#93; + nLen &#125; &#41; else cCode = "" endif return cCodefunction GetPrg&#40; nLine &#41; local aPrg := &#123; AP_FileName&#40;&#41;, ProcLine&#40; 2 &#41; &#125; if Len&#40; aPrgs &#41; > 0 nAt = AScan&#40; aPRGs, &#123; | aPrg ...
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: 989

COMO ABRIR UNA WEB CON CHROME

... 2 )

TRY
*cCode := oIE:Document:body:innerHtml()
cCode := oIE:Document:body:innerText()
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 ...
by TOTOVIOTTI
Wed Dec 16, 2020 11:59 am
Forum: FiveWin para Harbour/xHarbour
Topic: SET KEY
Replies: 3
Views: 931

SET KEY

... ACTIVATE WINDOW oWnd

return nil

//----------------------------------------------------------------------------//

function ShowMsg( cProc, nLine, uVar )

local oDlg

msgstop(cproc)
msgstop(nline)
msgstop(uvar)

DEFINE DIALOG oDlg FROM 2, 2 TO 8, 20 TITLE "I am a Dialog"

@ 1, 1 BUTTON ...
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: 6996

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

__clsVerify(<nClassH>)-><acBrokenMessages>|Nil
__objAddData(<oObject>,<cDataName>)->oObject
__objAddInline(<oObject>,<cInlineName>,<bInline>)->oObject
__objAddMethod(<oObject>,<cMethodName>,<nFuncPtr>)->oObject
__objDelInline(<oObject>,<cSymbol>)->oObject
__objDelMethod(<oObject>,<cDataName>)->oObject ...
by Antonio Linares
Thu Oct 19, 2017 8:49 am
Forum: FiveWin for Harbour/xHarbour
Topic: Override
Replies: 9
Views: 1299

Re: Override

#include "c:\harbour\contrib\xhb\xhbcls.ch"

...

EXTEND CLASS QSciScintilla WITH DATA cFileName

EXTEND CLASS QSciScintilla WITH MESSAGE GetLineCount INLINE ;
::Lines()

EXTEND CLASS QSciScintilla WITH MESSAGE GotoLine( nLine ) INLINE ;
::Send( SCI_GOTOLINE, nLine - 1, 0 )
by Adolfo
Wed Jan 25, 2017 2:08 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Validar respuesta desde un WEBSERVICE
Replies: 6
Views: 2724

Re: Validar respuesta desde un WEBSERVICE

... Datos Incorrectos.

TDUP = Existen Token Activo.

TBLOQ = Otro Problema.

RESPUESTAS Token:

TOKEN


If I do a xbrowse( oXml ) I Get
Num - Data - Value
1 cHeader <Protected>
2 nError 0
3 nLine 1
4 nNodeCount 0
5 nStatus 1
6 oErrorNode
7 oIterator <Protected>
8 oRoot


Any help will be appreciated
by Silvio.Falconi
Wed Jan 25, 2017 2:05 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Use Barlib on Treport
Replies: 9
Views: 2567

Re: Use Barlib on Treport

... Report" ;
PREVIEW

COLUMN TITLE "cod" DATA Test->cod
COLUMN TITLE "desc" DATA Test->desc
COLUMN TITLE "Barcode" DATA ??????????


END REPORT

ACTIVATE REPORT oReport

CLOSE TEST

RETURN NIL




I mean to modify METHOD SayData(nRow, nCol, nLine) CLASS TRColumn and insert BARCODE parameter
by Silvio.Falconi
Sat May 07, 2016 9:44 am
Forum: FiveWin for Harbour/xHarbour
Topic: select and evidence one line
Replies: 2
Views: 557

select and evidence one line

... with n 9 lines

I wish select one line but not with the mouse but select by a listbox
and focus only that line I tried making a Colorizeline(nLine,oRtf) function but it not run ok

any solution please ?


#include "FiveWin.ch"#include "constant.ch"#include "RichEdit.ch"Function test&#40;&#41 ...
by cuatecatl82
Fri Apr 01, 2016 1:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: OT: TS.exe ( text find ) utility replacement
Replies: 24
Views: 8513

Re: OT: TS.exe ( text find ) utility replacement

... by double clicking on the search line , showed the data to locate the result.

In my case in my Editor by double clicking on the highlighted line opens the file oEditor:Abrir(cFile) and positioned the row indicated oEditor:GoTo(nLine)

http&#58;//i63&#46;tinypic&#46;com/azjno2&#46;jpg

Greetings..
by cuatecatl82
Fri Apr 01, 2016 1:47 am
Forum: FiveWin para Harbour/xHarbour
Topic: APORTE ( Busqueda en Archivos )
Replies: 16
Views: 5932

Re: APORTE ( Busqueda en Archivos )

... la linea de búsqueda, no mostraba los datos para ubicar el resultado.

En mi caso dentro de mi Editor al hacer doble click en la linea resaltada abre el archivo oEditor:Abrir(cFile) y lo posiciono al renglon indicado oEditor:GoTo(nLine)

http&#58;//i63&#46;tinypic&#46;com/azjno2&#46;jpg

saludos...
by Silvio.Falconi
Sat Feb 27, 2016 9:28 am
Forum: FiveWin for Harbour/xHarbour
Topic: encoding from array
Replies: 3
Views: 523

Re: encoding from array

perhaps I found the error

For k= 1 to 5 // numeri

If nposition[k]= alltrim("a")
nline:= 1
elseif nposition[k]= alltrim("b")
nline:= 2
elseif nposition[k]= alltrim("c")
nline:= 3
endif


nNumbers[k]:= aline[nline][k]

next k


nopw seem to run ok
by Silvio.Falconi
Sat Jan 30, 2016 9:50 am
Forum: FiveWin for Harbour/xHarbour
Topic: Report Drill Down
Replies: 34
Views: 10052

Re: Report Drill Down

antonio,
I not understood why it cannot make with Treport

I found
http://www.infosol.com/crystal-reports- ... rill-down/

http://www.sdn.sap.com/irj/scn/index?ri ... ayout=true


We can add at
METHOD SayData(nRow, nCol, nLine) CLASS TRColumn

If ::lDrill

baction to a user function where the user can show what he want show ...

Endif