Search found 117 matches: nvalue

Return to advanced search

Re: AP_SetStatusCode

Dear Otto,

200 is returned by defaut by Apache. If you want to return a different value then you have to use ErrorLevel( nValue ) in example: ErrorLevel( 408 )
by Antonio Linares
Mon Feb 26, 2024 8:06 am
 
Forum: mod_harbour
Topic: AP_SetStatusCode
Replies: 2
Views: 148

Re: sleep function

Dear Marco,

Use SysRefresh() or SysWait( nValue )
by Antonio Linares
Fri May 26, 2023 8:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: sleep function
Replies: 2
Views: 214

Re: set spinner on combobox

... nil Thanks I had already tried ... but there is a problem !! If the procedure tells the tget that bMin: = {|| nValue}, changes the value ok. if the user increases and then decreases it does not return to the minimum number perhaps with a video I try to understand ...
by Silvio.Falconi
Wed Nov 02, 2022 7:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: set spinner on combobox
Replies: 7
Views: 432

Re: Printing double sided

Try this:

Code: Select all  Expand view
PRNDUPLEX( nValue )


where nValue is one of these:

Code: Select all  Expand view
/* duplex enable */
#define DMDUP_SIMPLEX    1
#define DMDUP_VERTICAL   2
#define DMDUP_HORIZONTAL 3


Reference:

https://learn.microsoft.com/en-us/windows/win32/api/wingdi/ns-wingdi-devmodea
by Enrico Maria Giordano
Tue Oct 04, 2022 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing double sided
Replies: 24
Views: 1254

Change columns title array on line - Resolved -

I have an array 16 columns with a radiomenu I change a nvalue https://i.postimg.cc/nLjFwf78/bu.jpg I wish change the title of SetGroupHeader I made :SetGroupHeader( Iif(nRadio=1,"Somme estratti","Distanze cilometriche" ...
by Silvio.Falconi
Mon Apr 18, 2022 4:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change columns title array on line - Resolved -
Replies: 2
Views: 228

Re: Decimal detection

Nages, cNum := cNumToStr( nValue, .f., .f. ) Wow, one line, I like that! Less is more. I note that in my version of FWH 1805, it is not listed in the documentation, but the function is in version 1805. You might want to check to make sure ...
by James Bott
Mon Sep 27, 2021 10:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Decimal detection
Replies: 10
Views: 1162

Re: Decimal detection

Code: Select all  Expand view

cNum := Str( .... )
cTrim := If( "." $ cNum, RemRight( RemRight( cNum, "0" ), "." ), cNum )
 


OR
Simply use the FWH built-in function
Code: Select all  Expand view

cNum := cNumToStr( nValue, .f., .f. )
 

instead of using cNum := Str( nValue )
by nageswaragunupudi
Mon Sep 27, 2021 9:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Decimal detection
Replies: 10
Views: 1162

Re: time schedule system

Dear Otto, You could supply the factor as a parameter: function resizeImage( cSrc, cDst, nValue ) local nQuality := 0 local oImage := GdiBmp():New( cSrc ) local nFactor := oImage:GetWidth() / If( Empty( nValue ), 400, nValue ) local newHeight := oImage:GetHeight( nFactor ...
by Antonio Linares
Fri Apr 16, 2021 10:39 am
 
Forum: mod_harbour
Topic: time schedule system
Replies: 5
Views: 699

Re: Cambio de colores en un GET

... Por otra parte, traté de implementar en mi programa lo escrito en el que me mandó como ejemplo y tampoco me funciona... Es como la variable nValue no se refrescara o actualizara. En fin, seguiré probando. Saludos !
by pedroluis
Sat Mar 27, 2021 8:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cambio de colores en un GET
Replies: 6
Views: 940

Re: fwnumFormat ( where is the documentation ?)

TRANSFORM( nValue, NUMPICT( nLen, nDec, nil, nil, nil, .t. ) )
by nageswaragunupudi
Tue Mar 24, 2020 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: fwnumFormat ( where is the documentation ?)
Replies: 7
Views: 870

Re: HEX color to INT value

There is also:

function nHex( cHex ) --> nValue
by Antonio Linares
Tue Dec 25, 2018 8:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: HEX color to INT value
Replies: 10
Views: 1909

Re: 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)) Hola Juan, como te va? Ya tienes un release para este programa que permita Modificar y Eliminar ? Gracias
by Compuin
Mon Nov 12, 2018 8:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase TTABLE insertar Registros en Tablas SQL Lexico XBASE
Replies: 15
Views: 3669

Re: Scrollbar size

Now I close the tablet and I run the test with nvalue:=NONCLIENTGET() xbrowser nvalue and I have these values 17,17,22,19 Now I must use a command to set the size 40 and then re insert the old sizes ...right ? before Local avalueScroll:=NONCLIENTGET() ...
by Silvio.Falconi
Wed May 23, 2018 7:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Scrollbar size
Replies: 7
Views: 877

xBrowse footer counting on cell / field-condition ?

Hello,

I want to show 2 totals on Footer

1. counting records where nValue > 0
2. counting records where not empty string

NO value counter only counting valid records on condition 1 and 2 !

regards
Uwe :?:
by ukoenig
Wed Mar 07, 2018 12:02 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse footer counting on cell / field-condition ?
Replies: 12
Views: 2365

Re: help for a value

Silvio,

Should nValue not be set as a Public variable ?

Now it is local and the changes never go to the function, because you don't pass it when you call the function.

Marc
by Marc Venken
Fri Jan 26, 2018 1:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: help for a value
Replies: 3
Views: 639
Next

Return to advanced search