Search found 89 matches: nstart

Return to advanced search

Re: Asort 101

Hi Rick Real simple and works well. Syntax - ASORT(<aTarget>, [<nStart>], [<nCount>], [<bOrder>]) --> aTarget Example ::aAll:=ASORT(::aAll,,,{|x,y| x[1]<y[1]}) Your code aSorted := ASORT(aLine,,,{|x,y| x[4]<y[4]}) There are no ...
by Jonathan Hodder
Tue Sep 11, 2012 10:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Asort 101
Replies: 3
Views: 854

Re: Creacion de archivo Excel .XLSX con mas de 100,000 Lineas

... este alineamiento , para ese rango de celdas ?? oSheet:Cells(2,3):Value = Time() && Es asignar el valor a la celda (2,3) oSheet:Cells( nStart, 1 ):Select() && Es seleccionar la Celda de posision (nStart, 1) ??? seria bastante interesante o quizas de donde podemos sacar esa informacion ...
by lubin
Fri Jun 15, 2012 4:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Creacion de archivo Excel .XLSX con mas de 100,000 Lineas
Replies: 20
Views: 9013

Re: Changing Tab-text color on TRibbon?

Hello Uwe,

how can you change hover text colour on ribbon if

if nPrompt == oSelf:nStart
nClrTxt = CLR_WHITE
endif
id inside the painting method.

Best regards,
Otto
by Otto
Tue May 15, 2012 12:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing Tab-text color on TRibbon?
Replies: 5
Views: 2354

Re: Changing Tab-text color on TRibbon?

Hello Günther, http://www.pflegeplus.com/pictures/ribbtxt1.jpg oRibbon:aGradFld := {| nOpt | if( nOpt == oRibbon:nStart, { { 1, 16777215, 8293112 } },; { { 1, 8293112, 16777215 } } ) } // Tabcolor oRibbon:nClrPaneRB := 14856016 // Background blue oRibbon:aClrTabTxt[1] := ...
by ukoenig
Tue May 15, 2012 10:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Changing Tab-text color on TRibbon?
Replies: 5
Views: 2354

Re: xBrowse-TMySql sample?

... tmysql query class METHOD Seek(Value,lSoftSeek,cFieldNames,llast) 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
Mon Apr 02, 2012 11:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse-TMySql sample?
Replies: 5
Views: 1237

FWH64 and at() function

... in FWH64. From documentation: AT() Locates the position of a substring in a main string. Syntax AT( <cSearch>, <cString>, [<nStart>], [<nEnd>] ) --> nPos Argument(s) <cSearch> Substring to search for <cString> Main string <nStart> First position ...
by George
Sun Mar 04, 2012 10:38 pm
 
Forum: Bugs report & fixes / Informe de errores y arreglos
Topic: FWH64 and at() function
Replies: 7
Views: 4153

Re: About asort

... Is there a way to make an order this I use for a dbf sort on lb02/a,lb11/a to &filelb on an Array using asort ? ASORT(<aTarget>, [<nStart>],[<nCount>], [<bOrder>]) --> aTarget The trick is made by bOrder. It recives 2 row like arrays , so you have to compare first ...
by Carlos Mora
Mon Sep 26, 2011 4:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: About asort
Replies: 3
Views: 812

msgrun - possível FIX?!

... "FiveWin.ch" //----------------------------------------------------------------------------// function WaitSeconds( nSecs ) local nStart := GetTickCount() DEFAULT nSecs := 1 while GetTickCount() - nStart < ( 1000 * nSecs ) end return nil //----------------------------------------------------------------------------// ...
by MGA
Thu Sep 08, 2011 2:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: msgrun - possível FIX?!
Replies: 0
Views: 493

Re: Outlook Calendar (prototype)

... cIniTime Local cFinTime Local oGet[4] cIniFecha := ::oCalex:oCalInfo:dStart cFinFecha := ::oCalex:oCalInfo:dEnd cIniTime := ::oCalex:oCalInfo:nStart cFinTime := ::oCalex:oCalInfo:nEnd DEFINE DIALOG oFrmIns @ 5, 3 SAY "&Date:" SIZE 25, 7 PIXEL OF oFrmIns COLOR 0, 14215660 @ 4, ...
by MdaSolution
Mon Jan 31, 2011 9:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook Calendar (prototype)
Replies: 102
Views: 31818

Re: Outlook Calendar (prototype)

... Dialog_Ins method I insert only these lines : METHOD Dialog_InS(nRow, nCol, nKeyFlags) CLASS SampleCalex ?"w" msginfo(::oCalex:oCalInfo:nStart) msginfo(::oCalex:oCalInfo:nEnd ) msginfo(dtoc(::oCalex:oCalInfo:dStart)) msginfo(::oCalex:oCalInfo:dEnd) RETURN nil when I click o n a cell ...
by MdaSolution
Mon Jan 31, 2011 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook Calendar (prototype)
Replies: 102
Views: 31818

Re: Outlook Calendar (prototype)

... call a Dialog ::oCalex:bLDblClick := {|nRow, nCol, nKeyFlags | ::Dialog(nRow, nCol, nKeyFlags)} in the Dialog you have the value ::oCalex:oCalInfo:nStart ::oCalex:oCalInfo:nEnd ::oCalex:oCalInfo:dStart ::oCalex:oCalInfo:dEnd Regards Maurizio
by Maurizio
Mon Jan 31, 2011 8:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook Calendar (prototype)
Replies: 102
Views: 31818

Re: Outlook Calendar (prototype)

adddates read all appointments and load them on class to show box or special box.
see also LoadDates( nStart, nEnd, dStart, dEnd, cText, cSubject ) method on tcalex class
by Silvio
Thu Jan 27, 2011 7:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Outlook Calendar (prototype)
Replies: 102
Views: 31818

Re: Fulltextsearch (to Marco Boschi)

... aClifor, nRecno ) FUNCTION AGG_REC( cFile, aFile, nRecord ) LOCAL cDelete LOCAL aRec := {} LOCAL nFld, nNew LOCAL nNuovi LOCAL aNew := {} LOCAL nStart := LEN( aFile ) LOCAL i // se ci sono nuovi record prima crea i nuovi elementi dell'array vuoti IF nRecord > LEN( aFile ) nNuovi := nRecord ...
by MarcoBoschi
Wed Nov 10, 2010 9:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fulltextsearch (to Marco Boschi)
Replies: 36
Views: 9384

Re: TDolphin Clase para manejar MySql

Todas las busquedas en Dolphin se hacen a bajo nivel METHOD Seek( uSeek, cnField, nStart, nEnd, lSoft, lRefresh ) Hace una busqueda usando un algoritmo llamado en computacion "arbol binario" (usado comunmente en los diccionarios), por lo general lo que ...
by Daniel Garcia-Gil
Thu Sep 23, 2010 12:21 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: TDolphin Clase para manejar MySql
Replies: 74
Views: 25145

Re: create and use an index for a set of records

... ELSE nPosStart := nPosStart + nHead + nRecSize ENDIF ELSE EXIT ENDIF ENDDO ? SECONDS() - nIni RETURN aRecord FUNCTION ATREC( cTesto , cStringa , nStart, nHead, nRecSize ) LOCAL nPos := 0 LOCAL nRecord := 0 nPos := AT( cTesto , cStringa , nStart ) IF nPos > 0 nRecord := INT( ( nPos - nHead ...
by MarcoBoschi
Tue Aug 03, 2010 10:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: create and use an index for a set of records
Replies: 10
Views: 2146
PreviousNext

Return to advanced search