Search found 214 matches: ntotal

Return to advanced search

Re: very slow also with array

Hello Silvio, I think you need to implement time measurements in the individual steps so that you can see where in which section of the source code the program is slow. You can link xbrowse and also implement a time measurement in the methods there. Best regards, Otto Otto, I make this @ 16, 5 SCRO...
by Silvio.Falconi
Sun Oct 13, 2024 5:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: very slow also with array
Replies: 2
Views: 184

Re: Need Help giide for my program

... OF oDlg RIGHT ; VALID ( If( oRec:TaxRate >= 0, ( oDlg:Update(), .t. ), .f. ) ) @ nHT - 139 + 45, nWd - 170 SAY ; ( oRec:Tax := ROUND( oBrw:Net:nTotal * oRec:TaxRate / 100, 0 ) ) ; PICTURE "999,999,999" SIZE 105,24 PIXEL OF oDlg UPDATE RIGHT @ nHt - 105 + 45, nWd - 270 SAY "TOTAL" ...
by Otto
Fri Jul 19, 2024 7:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Need Help guide for my program.
Replies: 38
Views: 2434

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: 294

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: 386

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: 386

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: 398

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: 895

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: 3670

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: 3670

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: 7153

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: 1863

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: 1863

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: 1213

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: 1213

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: 1786
Next

Return to advanced search