Search found 34 matches: overrides

Return to advanced search

Re: Switching my setup program to webview2

... and then you reach a point where you can't cover something with the components, and you then run into problems. But for example, HYPER template overrides the Bootstrap.css. I have transposed the screens more or less with ChatGPT. I haven't done much manual reworking yet. Best regards, Otto Here ...
by Otto
Mon Feb 12, 2024 8:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Switching my setup program to webview2
Replies: 9
Views: 404

Seeking your thoughts

... an invoice, to any printer, it comes out perfectly. If he prints from his computer, to the same printers, the background shows up very dark and overrides the printed text and the graphic. I suspect it is some setting on his computer but I don't know what. I've eliminated print drivers because ...
by TimStone
Wed Jun 07, 2023 10:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Seeking your thoughts
Replies: 10
Views: 652

Why am I able to define same function twice in javascript?

functions are data in memory stack, so when you define another function with the same name, it overrides the previous one. The second definition of an Object overwrites the first one. In general the last definition of an object overwrites all previous definitions. Functions ...
by Otto
Mon Sep 26, 2022 9:59 am
 
Forum: mod_harbour
Topic: Why am I able to define same function twice in javascript?
Replies: 0
Views: 330

Re: FWH 2102: GET Upper, Lower, Proper Cases

... both ES_UPPERCAE and ES_LOWERCASE are specified in the RC file, ES_LOWERCASE takes precedence. 4) If ES_LOWERCASE is specified in the RC file, it overrides the picture clause "@!" 5) oGet:SetStyle( "UPPER" / "LOWER"/ "PROPER" ) can be used to force Upper,Lower ...
by nageswaragunupudi
Sat Mar 06, 2021 3:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 2102: GET Upper, Lower, Proper Cases
Replies: 3
Views: 768

New FTDN June 2020 (FWH 20.06)

... - New data of TXBrwColumn: bDataStrAlign. If assigned, the codeblock is evaluated with oCol as parameter and the result overrides nDataStrAlign - SqlRdd: Enhanced compatibility for Vertical Scrollbars. * Fix: uCharToVal( cDate, "D" ) is not always returning ...
by Antonio Linares
Thu Jul 09, 2020 9:37 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN June 2020 (FWH 20.06)
Replies: 1
Views: 1340

Re: Compare two arrays

... subject to override Usage1: FW_StrICmp( cStr1, cStr2, [lExact] ) --> -1,0,+1 for less than, equal or greater than. 3rd parameter, if specified, overrides SET EXACT setting Usage2: FW_StrICmp( cStr1, cCompOperator, cStr2, [lExact] ) --> .f. / .t. Eg: FW_StrICmp( c1, ">=", c2, ...
by ukoenig
Wed Jun 05, 2019 12:15 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Compare two arrays
Replies: 3
Views: 865

New FTDN May/Mayo 2019 (FWH 19.05)

... subject to override Usage1: FW_StrICmp( cStr1, cStr2, [lExact] ) --> -1,0,+1 for less than, equal or greater than. 3rd parameter, if specified, overrides SET EXACT setting Usage2: FW_StrICmp( cStr1, cCompOperator, cStr2, [lExact] ) --> .f. / .t. Eg: FW_StrICmp( c1, ">=", c2, ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3159

Re: Ribbon Theme

... Office 2016. To reiterate, we need to use the l2010 flag to get groups looking close to those in Office. Otherwise, we would have to make lots of overrides to the group class which would be much more work.
by James Bott
Tue Oct 23, 2018 5:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ribbon Theme
Replies: 163
Views: 28224

Re: Error GRAVE en xbrowse 18.05

... and they are all working correctly (to the extent we tested), including SetDolphin() and retain full backward compatibility. Your xGrid class overrides parent class's method SetDolphin(). So any changes made to method SetDolphin() in the parent class should not affect your program. Am I right? ...
by nageswaragunupudi
Sun Jul 15, 2018 11:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error GRAVE en xbrowse 18.05
Replies: 3
Views: 884

Re: XBROWSE ::nHeaderLines

nHeaderLines and font height are used to compute total height of header, if the programmer did not specify nHeaderHeight himself. So, nHeaderHeight overrides.
by nageswaragunupudi
Tue May 22, 2018 9:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE ::nHeaderLines
Replies: 5
Views: 713

New FTDN February/Febrero 2018 (FWH 18.02)

... has DATA bAction, double-click evaluates bAction with oTreeItem and oCol as parameters - Symbol bitmaps are shown in text color. - Col:bPopup now overrides oBrw:bPopup. - New DATA: lProfiler INIT .f. If set to .t., times taken for refresh, sort, maketotals are recorded in logfile * Enhancement: ...
by Antonio Linares
Fri Mar 09, 2018 12:01 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN February/Febrero 2018 (FWH 18.02)
Replies: 0
Views: 1338

Re: Database - 17.07 - Problems

... from TDatabase 17.07? Yes. Also, remember that no error doesn't mean that something hasn't gone wrong. Note that if you are using TData then it overrides the Close() method of TDatabase. James I used TDatabase 17.04 with new Close method
by Diego Decandia
Wed Sep 06, 2017 4:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Database - 17.07 - Problems
Replies: 84
Views: 11890

Re: Database - 17.07 - Problems

... the one from TDatabase 17.07? Also, remember that no error doesn't mean that something hasn't gone wrong. Note that if you are using TData then it overrides the Close() method of TDatabase. James
by James Bott
Wed Sep 06, 2017 4:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Database - 17.07 - Problems
Replies: 84
Views: 11890

Re: Add a Method on specific class

Create a new class, inherit from the one you wish to add to, and add your methods. Example: tData inherits from tDatabase and both adds, and overrides, some methods from the primary class. I have created classes that inherit from tData but add specific methods. For example, I can create an Inventory ...
by TimStone
Thu May 07, 2015 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Add a Method on specific class
Replies: 2
Views: 562

Re: Cantidad variable de parámetros

... the TEXT...ENDTEXT statement. When using PRETEXT with TEXT...ENDTEXT, eExpression is limited to a maximum length of 255 characters. eExpression overrides the contents of the _PRETEXT system variable. When eExpression contains an expression that needs to be evaluated, for example, a user-defined ...
by carlos vargas
Mon Dec 01, 2014 3:06 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Cantidad variable de parámetros
Replies: 29
Views: 9821
Next

Return to advanced search

cron