Search found 117 matches: nvalue

Return to advanced search

New FTDN February/Febrero 2017 (FWH 17.02)

... bmp ) and GetBmpHeight( bmp ). Parameter can be either GDI bitmap handle or GDI+ image pointer. * New: function DrawProgressBar( hDC, aRect, nValue, nTotal, aColors, lBorder ) aColors can be an array of 2 colors, alpha colors, brushes, gradients or an array of 2 bitmaps (handles or pointers) ...
by Antonio Linares
Fri Feb 24, 2017 12:37 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2017 (FWH 17.02)
Replies: 2
Views: 2165

Re: Duplex Printing

I think this is the function you are looking for.
PrnDuplex( [ nValue ] ) //--> nOldValue
by Gale FORd
Mon Feb 13, 2017 11:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex Printing
Replies: 3
Views: 845

Re: Busqueda numerica por aproximacion

Se me olvidó comentar que al usar DbSeek(nValue,.t.) y no encontrar el valor, el cursor se sitúa en el siguiente registro.
El caso es que el valor aproximado a encontrar puede ser mayor o menor al valor digitado.
Gracias.
by FranciscoA
Fri Aug 19, 2016 12:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Busqueda numerica por aproximacion
Replies: 7
Views: 992

Antonio: Duplexprint

In the source printdc.c in function HB_FUNC( PRNDUPLEX ) // ( nValue ) --> nOldValue should be added the line if (pDevMode->dmFields & DM_DUPLEX) to set any nValue only if the duplexprint for the printer is present. Or a second way == ...
by byte-one
Sun Feb 14, 2016 2:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Antonio: Duplexprint
Replies: 9
Views: 1288

Re: Appear Empty paper when use TReport

... program code. Regards, James ------------------------ Use the method "margin" to change the default 0.2 inch margins. TReport::Margin( nValue, nType, nScale ) --> nil Modify any of the top, left, bottom & right report margins. nValue The value of the new margin to be used. Default ...
by James Bott
Sun Jan 17, 2016 5:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Appear Empty paper when use TReport
Replies: 4
Views: 722

Re: Nuevo FWH 15.09 Error picture

... podria alguien colaborar el ejemplo.. procedure main() _main() Fw_SetUnicode( .t. ) _main() return function _Main() local oDlg, oGet local nValue := SPACE(10) SET _3DLOOK ON DEFINE DIALOG oDlg RESOURCE "TestGet" REDEFINE GET oGet VAR nValue PICTURE "@!" ID 110 OF oDlg ...
by Patricio Avalos Aguirre
Tue Nov 24, 2015 2:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 15.09
Replies: 10
Views: 1885

xBrowse footer-values changing at runtime

... to save the footer results to DBF-fields ? For the 1. browser I used calculated values displayed in footers like : oBrw1:aCols[5]:cFooter := nValue[1] because of a index UNIQUE problem. Because of calculated values , I can update the footers. It seems, that it doesn't work using TOTAL 1. ...
by ukoenig
Mon Sep 21, 2015 1:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse footer-values changing at runtime
Replies: 0
Views: 475

Re: ADO RDD xHarbour

... } Summarize When we use &(indexkey(0)) we can’t evaluate an index expression in ADO TABLES “NAME, DDATA, NVALUE” we will get an error but we can issue SQL SELECT like that. Thus we need ADODBF TABLES expression “NAME+DTOS(DDATE )+STR(NVALUE) “ to do it. ...
by AHF
Fri Aug 07, 2015 8:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 452926

Re: ADORDD Error : ADODEFAULT(5256)

... needed by the app for its evaluations. When we use &(indexkey(0)) we cant evaluate a index expression in ADO TABLES "name+dDate+nValue" we will get an error but we can issues a sql select like that. Thus we need the ADODBF expression "name+DTOS(dDate)+STR(nValue) to ...
by dutch
Wed Jun 17, 2015 10:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADORDD Error : ADODEFAULT(5256)
Replies: 21
Views: 4056

Re: ADO RDD xHarbour

... needed by the app for its evaluations. When we use &(indexkey(0)) we cant evaluate a index expression in ADO TABLES "name+dDate+nValue" we will get an error but we can issues a sql select like that. Thus we need the ADODBF expression "name+DTOS(dDate)+STR(nValue) to ...
by AHF
Wed May 13, 2015 5:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 452926

New FTDN April 2015 (FWH 15.04)

... case the replaced value is considered for totalling instead of the original value. Example: oCol:nFooterType := AGGR_SUM oCol:bSumCondition := { |nValue, o| If( oBrw:DRCR:Value == 'D', nValue := -nValue, nil ), .T. } * New: XBrowse METHOD RefreshHeaders() to repaint Headers only. * Fix: database.prg. ...
by Antonio Linares
Sat Apr 25, 2015 7:44 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April 2015 (FWH 15.04)
Replies: 6
Views: 3623

Re: Xbrowser Footer calc

... small correction in xbrowse.prg. Please locate this line in method MakeTotals()               if Eval( IfNil( :bSumCondition, bCond ), nValue, oCol )  Please make a very minor change like this. ( change nValue as @nValue )               if Eval( IfNil( :bSumCondition, bCond ...
by nageswaragunupudi
Tue Mar 24, 2015 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowser Footer calc
Replies: 8
Views: 1219

Clase TTABLE insertar Registros en Tablas SQL Lexico XBASE

... .OR. CHR(29)$uValue) uValue:=STRTRAN(uValue,CHR(28),"\") uValue:=STRTRAN(uValue,CHR(29),"'") ENDIF RETURN uValue FUNCTION lstr(nValue) RETURN ALLTRIM(STR(nValue))
by jnavas
Mon Mar 09, 2015 7:14 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TTABLE insertar Registros en Tablas SQL Lexico XBASE
Replies: 15
Views: 3785

Almacenar/Recuperar imagenes, binarios en Tablas DBF

... NIL FUNCTION cFileTemp(cExt) LOCAL cFile:="tmp"+STRTRAN(LSTR(SECONDS()),".","")+cExt RETURN cFile FUNCTION lstr(nValue) RETURN ALLTRIM(STR(nValue)) FUNCTION GETPAGES(cFileOrg) LOCAL cFileZip :=cFileTemp(".ZIP") LOCAL cFileMime:=cFileTemp(".TXT") ...
by jnavas
Mon Mar 09, 2015 1:23 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Almacenar/Recuperar imagenes, binarios en Tablas DBF
Replies: 12
Views: 5112

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

... [<nCount>], [<nTargetStart>]) -> aTarget ACos(<nRadians>) -> nArcCosine AddASCII( <cString>, <nValue>, [<nPos>] ) -> cNewString AddMonth( <dDate>, <nMonths> ) -> dNewDate ADel(<aArray>, <nElement>, [<lShrink>]) ...
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: 1051
PreviousNext

Return to advanced search