Search found 89 matches: nstart

Return to advanced search

Lista de funciones de [x]harbour con sus parametros para edi

... [<aSizes>], [<aDates>], [<aTimes>], [<aAttributes>]) -> nFiles AEval(<aArray>, <bBlock>, [<nStart>], [<nCount>]) -> aArray AFields([<aFieldsnames>], [<aTypes>], [<aWidths>], [<aDecimals>]) -> nFields ...
by carlos vargas
Wed Feb 11, 2015 2:37 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Lista de funciones de [x]harbour con sus parametros para edi
Replies: 2
Views: 1036

Re: New Rating Class

...     nStep := 2      nOAng := nAngl/2      nLados:= nLados*2      nPorC := 9.9+(nPorC*0.9)   ENDIF   *FOR nCount = nStart TO nLados STEP nStep    // MODIFIED       aVert[nCount] := { nY+nRadH+(nRadH*Cos(nAngu)), nX+nRadV+(nRadV*Sin(nAngu)) ...
by antolin
Sat Jan 03, 2015 8:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New Rating Class
Replies: 60
Views: 19559

xBrowse + TDOLPHIN

... ocorre um erro de GPF. Resolvido assim: static FUNCTION DolphinSeek( c, oBrw, cQryWhere ) --->ERRO lRet := ( oQry:Seek( c, cSortOrder, nStart - 1, oQry:LastRec(), .T., .T. ) != 0 ) --->OK lRet := ( oQry:Seek( c, cSortOrder, nStart, oQry:LastRec(), .T., .T. ) != 0 )
by MGA
Sat Dec 27, 2014 8:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: xBrowse + TDOLPHIN
Replies: 2
Views: 472

Mr. Rao fwh1407R2 - xbrowse possível Bug

... o sistema para de responder. XBROWSE+TDOLPHIN static FUNCTION DolphinSeek( c, oBrw, cQryWhere ) ... //error //lRet := ( oQry:Seek( c, cSortOrder, nStart - 1, oQry:LastRec(), .T., .T. ) != 0 ) //OK lRet := ( oQry:Seek( c, cSortOrder, nStart, oQry:LastRec(), .T., .T. ) != 0 ) return lRet
by MGA
Fri Aug 15, 2014 2:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Mr. Rao fwh1407R2 - xbrowse possível Bug
Replies: 1
Views: 489

Re: Copia de matrices

... to another ------------------------------------------------------------------------------ Syntax ACOPY(<aSource>, <aTarget>, [<nStart>], [<nCount>], [<nTargetPos>]) --> aTarget Arguments <aSource> is the array to copy elements from. <aTarget> is ...
by hmpaquito
Fri Jul 18, 2014 6:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Copia de matrices
Replies: 5
Views: 1120

Re: MIGRACION DE XHARBOUR A HARBOUR

hb_At( <cSearch>, <cString>, [<nStart>], [<nEnd>] ) --> nPos
by hmpaquito
Mon Jun 23, 2014 12:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MIGRACION DE XHARBOUR A HARBOUR
Replies: 29
Views: 5425

MIGRACION DE XHARBOUR A HARBOUR

... Al compilar he visto que la función AT() en Harbour es exactamente igual que en Clipper y no tiene los dos parámetros extendidos de xHarbour nStart y nEnd,me imagino que se podría sustituir con un substring: Actualmente: nFinPoint := AT("-", cCalle, 8 ) cambiar a nFinPoint := AT("-", ...
by Manuel Valdenebro
Mon Jun 23, 2014 10:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: MIGRACION DE XHARBOUR A HARBOUR
Replies: 29
Views: 5425

Re: Slow RDD experiences

... /* This program demonstrates the speed difference dirty read makes when skipping though a shared database. */ #include "SIXNSX.CH" LOCAL nStart, nEnd SET EXCLUSIVE OFF // Make SHARED the default USE TEST VIA "SIXNSX" // Open up the TEST database INDEX ON last TO last // Build ...
by Gale FORd
Wed May 28, 2014 8:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Slow RDD experiences
Replies: 45
Views: 7607

Re: TRichEdit

Use oRichEdit:Colorize( nStart, nEnd, nColor )
by Antonio Linares
Fri Nov 29, 2013 8:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TRichEdit
Replies: 8
Views: 1471

New FTDN September/Septiembre 2013 (FWH 13.09)

... 4, 3 ] := { |x| If( x == nil, aData[ 2, 1 ] * aData[ 3, 2 ], ; aData[ 2, 1 ] := x / aData[ 3, 2 ] ) } * New: function FW_ArrSum( aArray, nbCol, nStart, nCount ) --> nSum nbCol can be column number that is to be totalled. Or nbCol can be a codeblock. Codeblock is evaluated for every row, with ...
by Antonio Linares
Wed Oct 30, 2013 3:14 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN September/Septiembre 2013 (FWH 13.09)
Replies: 1
Views: 2808

Re: RPreview mal en xp

... is returned. FileStr() Reads a string from a file beginning at a specified offset. Syntax FileStr( <cFileName>, ; [<nBytes>] , ; [<nStart>] , ; [<lCtrl_Z>] ) --> cString Arguments <cFileName> This is a character string holding the name of the file to read from. ...
by carlos vargas
Fri Oct 11, 2013 6:42 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: RPreview mal en xp - SOLUCIONADO (a medias)
Replies: 52
Views: 11458

Re: Nag Screen

... 5 segundos",; "Processando, aguarde...",; { | oDlgSef | UpdCaption( oDlgSef) } ) ... Static function UpdCaption( oDlg ) local nFor, nStart for nFor := 4 to 0 step -1 nStart = GetTickCount() while ( GetTickCount() - nStart ) < 1000 end oDlg:cMsg := " wait for "+; LTrim( ...
by Wanderson
Fri Sep 20, 2013 12:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Nag Screen
Replies: 9
Views: 1617

Re: TMysql Seek not working

... http://www.xtech.com.cn/down/mysql.c METHOD Seek( xValue,lSoftSeek,cFieldNames,llast) CLASS TMySQLQuery local nstart,nend,nretry:=0,Xvalue0:=Xvalue,ctype:=VALTYPE(xValue) default lSoftSeek to .t. DEFAULT llast TO .f. if ctype=="C" if len(xValue)<LEN(cvaltochar(if(VALTYPE(cfieldnames)=="B",EVAL(cfieldnames),&cFieldNames))) ...
by ShumingWang
Fri Dec 07, 2012 1:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TMysql Seek not working
Replies: 4
Views: 978

Re: Printing to an IP adress

... 'ALIGN 1' ) AADD( aLabel, 'PRTXT "NO.: ' + cNo + '"' ) AADD( aLabel, 'PRPOS 460,600' ) AADD( aLabel, 'PRTXT "PKG NO: ' + LTRIM(STR(nStart,9)) + ' OF ' + LTRIM(STR(VAL(cPkg_rcv),9)) + '"' ) AADD( aLabel, 'PRPOS 030,525' ) AADD( aLabel, 'PRTXT "P.O. NO.: ' + cPo + '"' ...
by cdmmaui
Fri Sep 21, 2012 1:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing to an IP adress
Replies: 4
Views: 1017

Re: Asort 101

Hi Rick; Syntax ASort( <aArray>, [<nStart>], [<nCount>], [<bSort>] ) --> aArray Arguments <aArray> The array to be sorted. <nStart> This is a numeric expression indicating the first element in the array to ...
by reinaldocrespo
Tue Sep 11, 2012 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Asort 101
Replies: 3
Views: 854
PreviousNext

Return to advanced search