Search found 38 matches: afill

Return to advanced search

Re: TMysSql : Cannot create a table

... aFStruct to {} ::aRow := aRow ::aFieldStruct := aFStruct ::cTable := cTableName ::aDirty := Array(Len(::aRow)) ::aOldValue := Array(Len(::aRow)) AFill(::aDirty, .F.) // inserting these lines fixed the bug! for nI := 1 to Len(::aRow) __ObjAddData(Self,::aFieldStruct[nI][MYSQL_FS_NAME]) next return ...
by mosh1
Thu Aug 09, 2012 6:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TMysSql : Cannot create a table
Replies: 4
Views: 757

Re: hash with (x)harbour - knowledge base

... or as oTabel[1,1] or both mixed A better aproach would be : oTabel := Hash() FOR i := 1 TO 6 oTabel[CHR(64+i)] := Array(6) aFill(oTabel[CHR(64+i)],0) //FOR j := 1 TO 6 // oTabel[CHR(64+i),j] := 0 //NEXT NEXT Elements can only be retrieved as oTabel["A",1] Note ...
by Demont Brecht
Sat Nov 05, 2011 2:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: hash with (x)harbour - knowledge base
Replies: 20
Views: 7969

Re: NEW BUG found (Tradmenu)

afill(aHelpIDs,NIL)

Even this statement is not needed.
by nageswaragunupudi
Mon Sep 06, 2010 8:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: NEW BUG found (Tradmenu)
Replies: 13
Views: 2352

Re: Juan Planelles Lazaga

... ), ; lSeguir := iif( !( ( nMargen + nWidth ) < ( oPrn:nHorzRes() -nMargend ) ), .f., lSeguir ) ; } ) } aVar := Array( Len( oLine:aText ) ) aFill( aVar, 1 ) aL := Array( Len( oLine:aText ) ) ; aFill( aL, 0 ) aLen := {} //nIni := Len( cLineText ) - Len( Ltrim( cLineText ) ) // si hay espacios ...
by Juan Planelles
Tue Dec 29, 2009 10:39 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6828

Re: Juan Planelles Lazaga

... } // Mejor así ???? 25-08-2009 nItem := nPar lChange := .f. nVez := 1 cText := " " //Memoread( aFiles[ nItem ] ) cFile := " " AFill( aItems, Space( 10 ) ) AFill( aFiles, Space( 10 ) ) // adaptar a llamada de no ayuda sino los SV.. /historias if (lFile) aFiles := {} aadd( aFiles, ...
by Juan Planelles
Tue Dec 29, 2009 10:22 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Juan Planelles Lazaga
Replies: 9
Views: 6828

Re: Syntax highlight in these forums

... "return nil" "endclass" /C1 .and. .not. .or. .t. .f. #include #define #ifdef #endif #else aadd abs aclone acopy adel aeval afill ains alert alias alltrim as asc array activate action append asize ascan begin button buttonbar brush break case class classdata close color colors ...
by Antonio Linares
Mon Feb 16, 2009 7:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Syntax highlight in these forums
Replies: 5
Views: 2020

Que estaré haciendo mal :(

... "endwhile" "end" "next" "return nil" "endclass" /C1 .and. .not. .or. .t. .f. #include #define #ifdef #endif #else aadd abs aclone acopy adel aeval afill ains alert alias alltrim as asc array activate action append asize ascan begin button buttonbar brush break case class classdata close color colors ...
by ACC69
Thu Dec 04, 2008 12:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editor de texto...
Replies: 15
Views: 4995

... "endwhile" "end" "next" "return nil" "endclass" /C1 .and. .not. .or. .t. .f. #include #define #ifdef #endif #else aadd abs aclone acopy adel aeval afill ains alert alias alltrim as asc array activate action append asize ascan begin button buttonbar brush break case class classdata close color colors ...
by Antonio Linares
Wed Dec 03, 2008 9:11 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Editor de texto...
Replies: 15
Views: 4995

... ::LoadFields() EndIf EndIf ::lFirstPaint := .F. If ::bLine != Nil .and. Empty(::aColumns) Default nElements := Len( Eval(::bLine) ) aJustify := Afill( Array( nElements ), 0 ) aJustify := Afill( Array( nElements ), 0 ) If Len( ::aHeaders ) < nElements If ::oTree == Nil ::aHeaders := Array( ...
by Natter
Mon Sep 08, 2008 11:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bChange
Replies: 9
Views: 5526

... i'm missing... 'variable (array equal the the lenght of table) that will replace the field in xBrowse column... ... aNums := Array( LastRec() ) AFill( aNums, 1 ) ... Clever idea. I never thought of that :roll: Will let you know after dinner (i'm on the other side of the world ) :D
by fraxzi
Tue Jul 29, 2008 11:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Image on inserted column
Replies: 8
Views: 1638

Hola Loren,

AFill( aDto,0 )
by vlmsoft
Tue May 13, 2008 5:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Depurando el codigo
Replies: 1
Views: 489

... IF nCantidad > 9999999999999.99 MsgStop("Número muy grande para convertir en letras",; "Mensaje de la Función Num2Txt") Return nCantidad EndIf AFill(aTexto, "") nCantidad:= Round(nCantidad, 2) //Redondea a 2 los decimales nEntero := Int(nCantidad) cCents := StrTran(Str(nCantidad - nEntero), ...
by ARCC
Sun Mar 02, 2008 9:09 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Convertir Número a texto
Replies: 11
Views: 3617

... nI, nJ, nNumero, nEntero, nCents, nPunto Local cCadena, cDigitos, cTerminador, cCents Local aTexto[5], acMoneda:= {" bolivar ", " bolivares "} AFill(aTexto, "") nCantidad:= Round(nCantidad, 2) nEntero := Int(nCantidad) nCents := nCantidad - nEntero cCents := Str(nCents) nPunto := At(".", cCents) ...
by ARCC
Fri Feb 29, 2008 7:13 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Convertir Número a texto
Replies: 11
Views: 3617

... /Function String 3 = "%*^{Procedure^}*" /C1 .and. .not. .or. .t. .f. #include #define #ifdef #endif #else aadd abs aclone acopy adel aeval afill ains alert alias alltrim as asc array activate action append asize ascan begin button buttonbar brush break case class classdata close color colors ...
by Antonio Linares
Sun Nov 04, 2007 12:11 pm
 
Forum: FiveWin para Pocket PC
Topic: Un principiante
Replies: 32
Views: 11829

... /Function String 3 = "%*^{Procedure^}*" /C1 .and. .not. .or. .t. .f. #include #define #ifdef #endif #else aadd abs aclone acopy adel aeval afill ains alert alias alltrim as asc array activate action append asize ascan begin button buttonbar brush break case class classdata close color colors ...
by Antonio Linares
Mon Oct 01, 2007 4:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ultraedit studio
Replies: 4
Views: 1607
PreviousNext

Return to advanced search