Search found 74 matches: evaluates

Return to advanced search

Re: WebView2 Essentials: Guides, Tips & Resources

... Sets the HTML content of the web view. Run(): Runs the web view. Destroy(): Destroys the web view and cleans up resources. Eval(cScript): Evaluates a JavaScript script in the context of the web view. Init(cScript): Initializes the web view with a JavaScript script. GetWindow(): Retrieves ...
by Otto
Wed Jan 10, 2024 7:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: WebView2 Essentials: Guides, Tips & Resources
Replies: 2
Views: 480

Re: Xbrowse, FastEdit y xBrw:Edit() tratando de entender...

... éxito. El Maestro Rao dice en otro post; If oCol:nEditType is > 0 and oCol:lReadOnly is .F. ( default ) and oCol:bEditWhen is NIL (default ) or Evaluates to .T. inline edit of the cell is automatically available (whether oBrw:lFastEdit is .T. or .F. ) ... Methods oBrw:Edit( lAppend ) and oBrw:EditSource( ...
by jose_murugosa
Tue Jul 18, 2023 9:14 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Xbrowse, FastEdit y xBrw:Edit() RESUELTO
Replies: 7
Views: 318

Re: Xbrowse : Tooltips timers

... navicate to the current row, which is confusing and error-prone. In case of bCellToolTip, xbrowse first navigates to the mouse over row and then evaluates the codeblock with mouse over column object as parameter and returns to the current row. This simplifies the programmer's job. It is suggested ...
by nageswaragunupudi
Mon Jun 12, 2023 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Tooltips timers
Replies: 3
Views: 231

Re: Fivewin and ADO

hi, if oCol:nEditType is > 0 and oCol:lReadOnly is .F. ( default ) and oCol:bEditWhen is NIL (default ) or Evaluates to .T. Inline Edit of the cell is automatically available (whether oBrw:lFastEdit is .T. or .F. ) you talk about oCol but i use oBro ...   oBrw:nEditTypes := ...
by Jimmy
Sat Jun 10, 2023 5:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3796

Re: Fivewin and ADO

... oCol:nEditType > 0 (usually EDIT_GET. if oCol:nEditType is > 0 and oCol:lReadOnly is .F. ( default ) and oCol:bEditWhen is NIL (default ) or Evaluates to .T. Inline Edit of the cell is automatically available (whether oBrw:lFastEdit is .T. or .F. ) When the user presses Enter Key on a cell ...
by nageswaragunupudi
Sat Jun 10, 2023 1:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fivewin and ADO
Replies: 36
Views: 3796

New FTDN October/Octure (FWH 22.10)

... Since FWH2008, bClrStd, bClrSel, bClrSelFocus are evaluated with two parameters, viz., browse and column objects. column object is nil when browse evaluates the blocks.However, if a column using a block using the parameters inline edit raises runtime error. Fixed. For previous versions from FWH2008, ...
by Antonio Linares
Wed Nov 02, 2022 11:55 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octure (FWH 22.10)
Replies: 2
Views: 862

Re: Extracting the lines from a text

... that are delimited by either <cDelimiter> or by EOL (end of line) if (instead of <cDelimiter>) <lEOL> has been passed and evaluates to .T. If neither <cDelimiter> nor <lEOL> specified, then as delimiter is used, by default, an empty space (ASCII char 32).
by Jimmy
Mon Sep 26, 2022 3:50 am
 
Forum: Utilities / Utilidades
Topic: Extracting the lines from a text
Replies: 4
Views: 764

New FTDN June/Junio 2022 (FWH 22.06)

... all elements in the reverse order. Ex: FW_AReverse( { 1, 2, 3, 4 } --> { 4, 3, 2, 1 } - New: FW_RAEval( aArray, bBlock, [nStart], [nCount] ) Evaluates bBlock for every row like AEval() but in the reverse order from last element to the first element. If the optional parameter nStart and/or ...
by Antonio Linares
Tue Jun 21, 2022 4:31 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June/Junio 2022 (FWH 22.06)
Replies: 1
Views: 872

Re: Problem to Filter a dbf error on day week

This is wrong:
Code: Select all  Expand view

aCountGiorni[ DOW( FIELD->DATA )-1 ]
 


If FIELD->DATA is Sunday, DOW( FIELD-> DATE ) evaluates to 1 and [ DOW[FIELD->DATA] - 1 ] evaluates to 0/
Naturally aCountGiorni[ 0 ] results in a runtime error.
This must be simple to understand.
by nageswaragunupudi
Tue Jun 07, 2022 11:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem to Filter a dbf error on day week
Replies: 2
Views: 263

Re: Problema con xBrowse

... ;oCol:oBrw:oRs:Fields( "HDR_TOT" ):Value, 0.00 ) }  Please never use bStrData. Deprecated many years ago. The codebock evaluates to a Character Value, which XBrowse faithfully displays in the Cell. XBrowse uses a numeric value returned by oCol:bEditValue for internal ...
by nageswaragunupudi
Sat Apr 30, 2022 4:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema con xBrowse (SOLUCIONADO)
Replies: 11
Views: 1153

Re: Finding XBrowse current record

... no.2038 of window.prg (FWH1805)       return Eval( ::bLDblClick, nRow, nCol, nKeyFlags, Self )  The xbrowse object evaluates the bLDblCkick codeblock with 4 parameters nRow, nCol, nKeyFlags and Self. If we declare the codeblock as { |param1,param2,param3,param4| ...
by nageswaragunupudi
Sun Jul 04, 2021 11:36 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Finding XBrowse current record
Replies: 11
Views: 1390

Re: oDbf:Delete() error

...            DELETE FOR ALLTRIM(Usuario)==ALLTRIM(oUtenti:Clave)          } ) This gives wrong results. Exec method evaluates the codeblock with Self as parameter.   METHOD Exec( bBlock )      INLINE ( ::cAlias )->( Eval( ...
by nageswaragunupudi
Sun Jun 06, 2021 7:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: oDbf:Delete() error
Replies: 15
Views: 1208

Re: xBrowse faster with less colums

... Assume you have a browse with 20 columns and 300,000 rows but on the screen we see 10 columns and 40 rows. When full refresh is called, xbrowse evaluates all relevant codeblocks for 40 x 10 = 400 cells and paints all 400 cells. Most of the time only one row gets repainted. In such cases only ...
by nageswaragunupudi
Fri May 01, 2020 12:48 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse faster with less colums
Replies: 9
Views: 1043

Re: alphanumeric vs. numeric

Hello Uwe,

thank you for your answer.
I have tried with VAL, but this is not the solution.

local cNumber = "1S2673Z"
msginfo(VAL(cNumber)) = 1

I think VAL evaluates cNumber until the first non-numeric character.

Thank you and kind regards
Iris
by Iris Gesser
Wed Oct 02, 2019 11:00 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: alphanumeric vs. numeric
Replies: 5
Views: 735

New FTDN April/Abril 2018 (FWH 18.04)

... and SetPixel() fixed. * TWindow class: New method GetPixel( nX, nY ) --> nColor * XBROWSE: - Method Value of TXBrwColumn: This method evaluates (::oBrw:cAlias)->( ::bEditValue ) in TRY/CATCH block, so that if the evaluation fails, default value is returned. The side effect is that ...
by Antonio Linares
Mon Jun 04, 2018 6:34 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2018 (FWH 18.04)
Replies: 1
Views: 2161
Next

Return to advanced search