Search found 194 matches: negative

Return to advanced search

Re: RAO advice on using Mysql

Thanks Rao ,
just what I was looking for :D .
What does -100 mean in oCn:RecSet( cSql, -100 )
I knowo Cn:RecSet( cSql, 100 ) but not with a negative sign

Regards Maurizio
by Maurizio
Wed Feb 07, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 977

Re: JSON2DBF adapter

... the array strings for the json. When preparing a JSON for HTML, there can be styling, etc., as well. For example, if you have values and they are negative, you can present these in HTML in red instead of black. Thus, you have the `do while/enddo` not passing parameters like `[bFor]`, `[bWhile]`, ...
by Otto
Sun Feb 04, 2024 8:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: JSON2DBF adapter
Replies: 3
Views: 505

Re: Interesting discussion with ChtGPT

... many found with it's capabilities, so they always just said it was obsolete and not usable. Where tech people are ignorant, they simply make negative assertions about whatever it is they do not know or understand, instead of expanding their own knowledge base.
by TimStone
Mon Nov 06, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Interesting discussion with ChtGPT
Replies: 15
Views: 1243

Re: Trabajar con dos pantallas

hi,

did you start your App on 1st or 2nd Monitor ?
if 2nd Monitor : is 2nd "left" or "right" from 1st Monitor (can be change)

i do use a CONFIG.INI where "left" Position have "negative" (!) Value
by Jimmy
Sun Jan 08, 2023 9:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Trabajar con dos pantallas
Replies: 10
Views: 784

New FTDN December/Diciembre 2022 (FW 22.12)

... fourth parameter is an array of column numbers, a nested sort is performed on multiple columns. For descending order, specify the column number as negative number. Eg: ASort( aArray,,{ 2, -4, 5 } ) Performs ascending sort of column 2 and where column 2 is equal, descending sort on column 4 and ...
by Antonio Linares
Tue Jan 03, 2023 7:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2022 (FW 22.12)
Replies: 5
Views: 1233

Re: WebView window

hi,

you can use "negative" Position at "Create" and later "move" to new Position / Parent
by Jimmy
Mon Dec 26, 2022 7:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView window
Replies: 16
Views: 998

Re: show a btnbmp pressed on buttonbar

I have a different thing. the two btnbmp are active through a logical variable lnumber, if it is active, oPlus must be activated, if it is negative, oNumber must be activated. Instead oCancel deselects both buttons and lnumber: = nil I just solved it like this #include "fivewin.ch"Function ...
by Silvio.Falconi
Tue Oct 18, 2022 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: show a btnbmp pressed on buttonbar
Replies: 9
Views: 602

Re: Harbour warnings

...        ON INIT ( hb_symbol_unused( Self ), MSGINFO() ) ;           CENTER  This edit in dialogs.ch does work (not sure of negative fallout), but it is inadequate/incomplete because things like nRow, nCol, nFlags, etc. need to be handled in other rows as well. What I do ...
by rhlawek
Sat Jun 25, 2022 3:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Harbour warnings
Replies: 34
Views: 2335

Re: Campos empaquetados en archivo de texto

... mid = 0; long hi = 0; bool isNegative; // this nybble stores only the sign, not a digit. // "C" hex is positive, "D" hex is negative, and "F" hex is unsigned. switch (nibble(inp, 0)) { case 0x0D: isNegative = true; break; case 0x0F: case 0x0C: isNegative = false; ...
by El Loco
Wed Oct 13, 2021 3:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Campos empaquetados en archivo de texto
Replies: 47
Views: 3019

Re: Decimal detection

... Arguments <nNumber> is the numeric value to be rounded. <nDecimals> defines the number of decimal places to retain. Specifying a negative <nDecimals> value rounds whole number digits. Returns ROUND() returns a numeric value. Description ROUND() is a numeric function that ...
by James Bott
Sat Oct 09, 2021 7:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Decimal detection
Replies: 10
Views: 1162

Re: Picture Clause to force Lower Case

... and numbers in British format L Pads numbers with zeros instead of blank spaces R Nontemplate characters are inserted X Adds DB (debit) after negative numbers Z Formats zeros as blanks ( Encloses negative numbers in parentheses ! Converts alphabetic characters to uppercase Picture mask The ...
by Marc Venken
Fri Feb 26, 2021 10:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Picture Clause to force Lower Case
Replies: 6
Views: 557

Re: New FTDN December/Diciembre 2020 (FWH 20.12)

... { |x,y| x + y }, u ) METHOD Subtract( u ) INLINE ::Calc( { |x,y| x - y }, u ) METHOD SubtractFrom( u ) INLINE ::Calc( { |x,y| y - x }, u ) METHOD Negative() INLINE ::Calc( { |x| -x } ) METHOD ScalarInverse() INLINE ::Calc( { |x| 1 / x } ) METHOD Exp() INLINE ::Calc( { |x| Exp( x ) } ) METHOD Sigmoid() ...
by Antonio Linares
Mon Dec 28, 2020 3:18 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 2552

New FTDN December/Diciembre 2020 (FWH 20.12)

... { |x,y| x + y }, u ) METHOD Subtract( u ) INLINE ::Calc( { |x,y| x - y }, u ) METHOD SubtractFrom( u ) INLINE ::Calc( { |x,y| y - x }, u ) METHOD Negative() INLINE ::Calc( { |x| -x } ) METHOD ScalarInverse() INLINE ::Calc( { |x| 1 / x } ) METHOD Exp() INLINE ::Calc( { |x| Exp( x ) } ) METHOD Sigmoid() ...
by Antonio Linares
Mon Dec 28, 2020 10:16 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN December/Diciembre 2020 (FWH 20.12)
Replies: 8
Views: 2552

Re: FWH: Support for Matrix calculations

... { |x,y| x + y }, u ) METHOD Subtract( u ) INLINE ::Calc( { |x,y| x - y }, u ) METHOD SubtractFrom( u ) INLINE ::Calc( { |x,y| y - x }, u ) METHOD Negative() INLINE ::Calc( { |x| -x } ) METHOD ScalarInverse() INLINE ::Calc( { |x| 1 / x } ) METHOD Exp() INLINE ::Calc( { |x| Exp( x ) } ) METHOD Sigmoid() ...
by nageswaragunupudi
Thu Dec 10, 2020 9:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH: Support for Matrix calculations
Replies: 3
Views: 720

Re: Big Popup

... ), before call your menu, and try Save this value before change with this function Not is possible use value 0, but is possible use negative values static nOldXtrasFunction Main()    nOldXtras := SetSpaceXTrasPop()....     SetSpaceXTrasPop( 10 )...// ...
by cnavarro
Sat Oct 03, 2020 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Big Popup
Replies: 1
Views: 417
Next

Return to advanced search