Search found 5012 matches: value

Return to advanced search

Re: cloud or not cloud

... with DBF (dBASE) files using PHP. * It includes functions for opening DBF files, reading headers and field descriptions, * properly padding values, and adding records to DBF files. * * Functions: * - php4dbf_logline: Logs messages to a log file. * - php4dbf_openDbf: Opens a DBF file. * - ...
by Otto
Fri Nov 15, 2024 9:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cloud or not cloud
Replies: 34
Views: 1120

Re: xbrowse cell on two sections

corrected

oCol:bClrStd := {|oCol,i| { RGB( 255, 0,0 ),IF (val(i:Value) >=100, CLR_BLUE,CLR_WHITE) } }


Image


How can I outline each square, that is, put a space on the side and below each square?
by Silvio.Falconi
Fri Nov 15, 2024 9:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 351

Re: xbrowse(autosort) + tdolphin - erro

... 90 % GDI resources: 90 % User resources: 90 % Windows total applications running: 1 1 , Variables in use ================ Procedure Type Value ========================== DOLPHIN_DEFERROR Param 1: O Class: ERROR TDOLPHINSRV:CHECKERROR Param 1: O Class: TDOLPHINSRV Param 2: N 1052 Param ...
by MGA
Thu Nov 14, 2024 6:30 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse(autosort) + tdolphin - erro
Replies: 6
Views: 198

Re: xbrowse cell on two sections

... I would like it this way https://i.postimg.cc/gJd3SNRY/k2.jpg I made oCol:bClrStd := {|i| { RGB( 255, 0,0 ),IF (oBrw:aCols[ i ]:Value >100, CLR_BLUE,CLR_WHITE) } } but make error
by Silvio.Falconi
Thu Nov 14, 2024 9:37 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse cell on two sections
Replies: 7
Views: 351

Ajustar Listbox

... de la columna 3 es un Longtext de un RecordSet SQL @ 3.5, .5 LISTBOX oLbx FIELDS "Folio: " + Transform(oRecordSet:Fields("Id"):value,"9999") + CRLF + "Codigo:" + IIF(oRecordSet:Fields("Codigo"):value=NIL,"",Transform(oRecordSet:Fields("Codigo"):value,"99999")) ...
by servicomver
Tue Nov 05, 2024 7:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ajustar Listbox
Replies: 2
Views: 118

Re: Startup function

... you what I found. Look for HARBOUR_START_PROCEDURE * source/pp/ppcore.c + Added predefined macro __HB_MAIN__. The macro is undefined or holds the value of HARBOUR_START_PROCEDURE depending on the compiler. Use this code to make your Harbour startup procedure platform/compiler independent: #ifndef ...
by Lailton
Thu Oct 31, 2024 11:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Startup function
Replies: 29
Views: 906

Re: color on xbrowse Box

... only when the Browse has focus. When the browse does not have focus, it is painted with oBrw:bClrSel (not oBrw:bClrSelFocus). Default value of oBrw:bClrSel is ::bClrSel      := {|| { GetSysColor( COLOR_INACTIVECAPTIONTEXT ), GetSysColor( COLOR_INACTIVECAPTION ...
by nageswaragunupudi
Tue Oct 29, 2024 10:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: color on xbrowse Box
Replies: 3
Views: 174

Re: Edit cell on xbrowse

Puedes usar bEditValid :bEditValid :=  {| oGet | if(oGet:value > 0 .and. oGet:value < 91,.t.,(MsgInfo("Solo 0 a 90"),.f.)) } Not Work https://i.postimg.cc/gcNG9HWx/nofunciona.png I made @ ...
by Silvio.Falconi
Tue Oct 29, 2024 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Edit cell on xbrowse
Replies: 5
Views: 225

a DBCOMBO review

... NOBLANK> ] ; [ ORDER <order> ] ; [ FOR <uCond> ] ; [ TOOLTIP <cToolTip>] ; NOBLANK : for the combo not to start with a blank value, it starts with the first value in the list ORDER : to use an index when filling the combo, in this case it is a TAG of an index FOR : is for ...
by Marcelo Via Giglio
Mon Oct 28, 2024 4:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: a DBCOMBO review
Replies: 0
Views: 102

Re: Startup function

... you what I found. Look for HARBOUR_START_PROCEDURE * source/pp/ppcore.c + Added predefined macro __HB_MAIN__. The macro is undefined or holds the value of HARBOUR_START_PROCEDURE depending on the compiler. Use this code to make your Harbour startup procedure platform/compiler independent: #ifndef ...
by Antonio Linares
Mon Oct 28, 2024 1:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Startup function
Replies: 29
Views: 906

General program technique : on init()

... oBrw[1]:bChange := { || showpicture("ARTIKEL") } oBrw[1]:Aankoop:bOnChange = { |oCol,uOldVal| change_art_aankoop(oBrw[1]:aankoop:value,oBrw[1]:bruto:value,"ARTIKEL","AANKOOPVELD",oBrw[1]) } ...... oBrw[3] = getXBrowser("ARTIKEL_FOTOS",oFld:aDialogs[FOL_ART_FOTOS]) ...
by Marc Venken
Thu Oct 24, 2024 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: General program technique : on init()
Replies: 2
Views: 183

Re: Extending SetScope()

... use for "parts used on invoices". For quick filterning, I use SetScope functions. ( top and bottom ). It uses the invoice number as the value for both. Thus when the invoice is open, only those parts used for that specific one will display in the xBrowse control. It all works perfectly. ...
by nageswaragunupudi
Sat Oct 19, 2024 3:06 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 612

Extending SetScope()

... use for "parts used on invoices". For quick filterning, I use SetScope functions. ( top and bottom ). It uses the invoice number as the value for both. Thus when the invoice is open, only those parts used for that specific one will display in the xBrowse control. It all works perfectly. ...
by TimStone
Fri Oct 18, 2024 10:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Extending SetScope()
Replies: 15
Views: 612

Re: a math formula

I need to make a formula to calculate a final value having an initial value for example 1 € and a fixed profit from 1 to 999 for example If nFixedProfit is 10, nInitialBet becomes 1.50. If nFixedProfit is from 10 to 13 nInitialBet becomes 1.50. ...
by Silvio.Falconi
Thu Oct 17, 2024 7:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: a math formula - RESOLVED -
Replies: 8
Views: 408

Re: a math formula

I need to make a formula to calculate a final value having an initial value for example 1 € and a fixed profit from 1 to 999 for example If nFixedProfit is 10, nInitialBet becomes 1.50. If nFixedProfit is from 10 to 13 nInitialBet becomes 1.50. ...
by Detlef
Wed Oct 16, 2024 7:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: a math formula - RESOLVED -
Replies: 8
Views: 408
Next

Return to advanced search

cron