Search found 212 matches: ntotal

Return to advanced search

Leer average en xBrowse

...    := AGGR_SUM            END  Para referirme al total de la columna IMPORTE basta con oBrx:aCols[02]:nTotal la pregunta es cómo me refiero al promedio de la primer columna? (PESO), si uso oBrx:aCols[01]:nTotal me da la suma, yo necesito el promedio. ...
by Armando
Sun Apr 09, 2023 1:30 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Leer average en xBrowse
Replies: 2
Views: 176

Re: Problem with tmeter

... use a progress bar as it uses Windows animation, themes, etc Please review samples\win32.prg Antonio perhaps I resolved I change only oProgress:nTotal:=len(adata) with oProgress:settotal(len(adata)) and run ok I not Know why https://i.postimg.cc/v897DFvk/L.gif
by Silvio.Falconi
Mon Nov 14, 2022 11:06 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 298

Problem with tmeter

... a dialog @ 55, 40 METER oProgress VAR nActual SIZE 120,20 PIXEL OF oDlgAgg ; COLOR 0x60ff0000, CLR_BLACK ; BARCOLOR 0x6000ff00, CLR_WHITE ; TOTAL nTotal FONT oFont BORDER CLR_BLACK ; // CIRCULAR INNERDIA { |n| 0.2 + ( 0.6 * n ) } ; FILLCOLOR { |n| NARGB( 210 - ( n * 200 ), CLR_BLACK ) } ; UPDATE ...
by Silvio.Falconi
Mon Nov 14, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 298

MakeTotals() con parametros o condicion

... con parametros?, Los parametro podrian considerar una condiucionpara totalizar los registros,,, ejemplo eCond := {|nCol|if(lCondition , nCol:nTotal += oData:valor, nCol:nTotal += 0)} eCond := {||if(oData:registro > 0, nCol:nTotal += oData:valor, nCol:nTotal += 0)} oBrw:MateTotals(eCond) ...
by Willi Quintana
Mon May 09, 2022 12:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MakeTotals() con parametros o condicion
Replies: 2
Views: 362

Re: Vender los derechos/licencia de mi APP

Lo debes vender como un producto nuevo,
tomar en cuenta el tiempo que te tardarías
en desarrollarlo desde cero.

nHoras_desarrollo
nCosto_x_hora
nTotal := nCosto_x_hora * nHoras_desarrllo

nCosto_proyecto := nTotal * 3

saludos.
by sysctrl2
Thu Nov 25, 2021 12:16 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Vender los derechos/licencia de mi APP
Replies: 4
Views: 771

Re: MySql Nativa Transacciones. At. Mr. Rao

...                           { "valor_cuota"   , nValorCuota }, ;                                             { "total"         , nTotal      }, ;                                             { "fecha_ent"     , dFechaEnt   }, ;                                         ...
by carlos vargas
Fri Sep 17, 2021 5:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2453

Re: MySql Nativa Transacciones. At. Mr. Rao

...                           { "valor_cuota"   , nValorCuota }, ;                                             { "total"         , nTotal      }, ;                                             { "fecha_ent"     , dFechaEnt   }, ;                                         ...
by carlos vargas
Fri Sep 17, 2021 5:03 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MySql Nativa Transacciones. At. Mr. Rao
Replies: 26
Views: 2453

Re: No funcionan los Ejemplos TWeb

... style: 'currency', currency: 'USD' })); console.log(parseFloat( data[n].salary).toLocaleString('de-DE', { style: 'currency', currency: 'EUR' })); nTotal += parseFloat( data[n].salary ) }
by Otto
Sun Aug 29, 2021 6:23 pm
 
Forum: mod_harbour
Topic: No funcionan los Ejemplos TWeb
Replies: 26
Views: 3539

Re: Consulta Sobre Pasar Dbf a Mysql

1. Setup your meter 2. oCn:bMeter := { |nProgress,nTotal| <your_meter_update_function>( nProgress,nTotal ) } 3. oCn:UploadFromAlias(...) 4. oCn:bMeter := nil But we advise you not to display meter, except for very huge tables, because the display ...
by TecniSoftware
Wed Feb 03, 2021 12:52 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Sobre Pasar Dbf a Mysql
Replies: 14
Views: 1321

Re: Consulta Sobre Pasar Dbf a Mysql

1. Setup your meter
2. oCn:bMeter := { |nProgress,nTotal| <your_meter_update_function>( nProgress,nTotal ) }
3. oCn:UploadFromAlias(...)
4. oCn:bMeter := nil

But we advise you not to display meter, except for very huge tables, because the display of meter reduces the speed a lot.
by nageswaragunupudi
Wed Feb 03, 2021 4:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Consulta Sobre Pasar Dbf a Mysql
Replies: 14
Views: 1321

Re: Como me refiero al total de una columna

... :nFooterType := AGGR_SUM :bSumCondition := { || AScan( oBry:aSelected, oBry:BookMark ) > 0 } :cFooterPicture:= "@Z 9,999,999,999.99" :nTotal := 0.00 :lTotal := (.T.) END :bOnMultiSelect := { || oBry:MakeTotals() } :bChange := { || IF( LEN( oBry:aSelected ) <= 1,( oBry:oCol(05):nTotal ...
by Armando
Fri Nov 13, 2020 2:37 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como me refiero al total de una columna (SOLUCIONADO)
Replies: 8
Views: 931

Re: Como me refiero al total de una columna

... el total de lo seleccionado con : if LEN(oBrw:aSelected) > 0 // ya tenes al menos 1 reg seleccionado. 2) el total de la columna if oBrw:importe:nTotal > 0 // ya tenes al menos 1 mov con importe mayor a 0 para esto tene en cuenta 2 cosas q no veo en tu code, 1) cuando definis el xbrowse tenes ...
by Ariel
Fri Nov 13, 2020 9:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como me refiero al total de una columna (SOLUCIONADO)
Replies: 8
Views: 931

FOREIGN KEY

... NULL," cTb[55]+="`ningreso` decimal(16,2) default NULL," cTb[55]+="`npagos` decimal(16,2) default NULL," cTb[55]+="`ntotal` decimal(16,2) default NULL," cTb[55]+="`ccliente` varchar(100) default NULL," cTb[55]+="`ncliente` int(6) unsigned NOT NULL," ...
by jgabri
Mon May 25, 2020 10:41 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FOREIGN KEY
Replies: 6
Views: 1619

Re: HDORDD. Importando datos desde dos conexiones diferentes.

... ? REPLACE si SELECT() si SELECT(“CLIENTES”) si SET FILTER ? SET SCOPE TO ( cSERIE + StrZero( NUMERO_ORI,20 ) ) ? SUM CLIENTES->IMPORTE TO Ntotal ? UNLOCK ALL si ZAP La "?" no significa que no esté si no que no lo he probado aún. En cuanto a lo indices el concepto en SQL es ordenancion ...
by xmanuel
Sun Apr 26, 2020 11:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: HDORDD. Importando datos desde dos conexiones diferentes.
Replies: 12
Views: 1662

Re: Wrong Tooltip

... good !!! only for these value I have problems now cTooltip += "Totale " + Chr( VK_TAB )+ ": "+ TRANSFORM( nTotal, NUMPICT( 7, 2, nil, nil, nil, .t. ) ) + CRLF cTooltip += "SubTotale" + Chr( VK_TAB )+ ": "+ TRANSFORM( nsubTotal, NUMPICT( ...
by Silvio.Falconi
Sat Mar 28, 2020 5:03 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Wrong Tooltip
Replies: 9
Views: 1425
Next

Return to advanced search