Search found 159 matches: derived

Return to advanced search

Re: FWHMARIADB Samples

... by, limits etc can be changed. For this reason, even if inheritence is enabled, rowset class does not support the usage you have in mind for your derived class.
by nageswaragunupudi
Wed Apr 26, 2017 11:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20977

Re: Nuevo FWH 16.11

... rows table by name `custbig` on our localhost for the purpose of benchmarking and performance checking during our development. This table is derived from customer.dbf by copying 2000 times. We prepared this test program to compare the speeds of reading 1,000,000 rows from this table by ODBC ...
by nageswaragunupudi
Thu Dec 15, 2016 1:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo FWH 16.11
Replies: 28
Views: 5035

New FTDN November/Noviembre 2016 (FWH 16.11)

... is to be specified in the resource only. * TWindow Method SayText( cText, aRect, cAlign, oFont, nClrText, nClrBack, lBorder ) Applies to all derived classes like dialogs and controls To be used in o:bPainted. function FW_SayText( hDC or oWnd, cText, aRect, cAlign, oFont, nClrText, nClrBack, ...
by Antonio Linares
Wed Nov 30, 2016 12:07 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN November/Noviembre 2016 (FWH 16.11)
Replies: 4
Views: 3247

FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )

... in the calculated or dependant columns are also read back and current row refreshed. After refreshing, if the value of the sorted column (even derived/related) is modified, the rowset is resorted and the row is placed in its correct sorted position. Note: After modifying the contents of a row ...
by nageswaragunupudi
Fri Jul 01, 2016 9:32 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 16.08 : Built-in MySql/MariaDB functionality (Updated )
Replies: 76
Views: 29157

Re: MODIFICACION EN LA XBROWSE PARA PINTARLO TIPO ZEBRA

... This is for information. If you want to add a new DATA to XBrowse, it is not necessary to modify xbrowse.prg. It is not even necessary to have a derived class. After defining xBrowe, oBrw:AddVar( "LZEBRA", .t. ) Now we can use oBrw:lZebra like any other DATA
by nageswaragunupudi
Fri May 13, 2016 4:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: MODIFICACION EN LA XBROWSE PARA PINTARLO TIPO ZEBRA
Replies: 7
Views: 1652

Re: How to set TSAY with Default TRANSPARENT

Mr Dutch My mistake. Derived class should also have classdata lRegistered. Anyway, please ignore my above suggestion totally. Instead let us have a revised #xcommand in our personal include file. myinclude.ch // revised say commands#xcommand ...
by nageswaragunupudi
Sun Jul 05, 2015 4:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set TSAY with Default TRANSPARENT
Replies: 9
Views: 1966

Re: How to set TSAY with Default TRANSPARENT

Dear Rao, I did as your comment but the program freeze. Keep this derived class in the main module CLASS TSay2 FROM TSay   DATA lTransparent INIT .t.ENDCLASS and then have one common include file that will be included in every program in the project eg: mycommon.ch ...
by dutch
Sun Jul 05, 2015 4:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set TSAY with Default TRANSPARENT
Replies: 9
Views: 1966

Re: How to set TSAY with Default TRANSPARENT

... which a programmer can set at the beginning. 6) Meanwhile this can be a possible solution to the original posting of this thread: Keep this derived class in the main module CLASS TSay2 FROM TSay   DATA lTransparent INIT .t.ENDCLASS and then have one common include file that will be included ...
by nageswaragunupudi
Sun Jul 05, 2015 2:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: How to set TSAY with Default TRANSPARENT
Replies: 9
Views: 1966

Re: xBrowse Trap Down Arrow key

XBrowse does not allow this.
You need to write your own KeyDown() method and override and have a derived class.
by nageswaragunupudi
Fri May 01, 2015 2:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse Trap Down Arrow key
Replies: 8
Views: 987

Re: WndCreateError

Hello, every TWindow derived class must have a class data lRegistered and call ::Register method. CLASS pBrowse FROM kBrowse    CLASSDATA lRegistered AS LOGICAL    METHOD New( nRow, nCol, nWidth, nHeight, bLine, aHeaders, ;      ...
by AntoninoP
Tue Mar 24, 2015 10:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: WndCreateError
Replies: 2
Views: 599

Re: Fuente sin destruir

nageswaragunupudi wrote:Parent class' destroy method already provides for destruction of ::oFont.
You do not need to do anything in your derived class


If oFontheader:end() is disable in the above example

03/14/15 22:26:32: C:\fwh\samples\xbcell.exe -- FONT,1611271663,TESTMAIN(15)
by mastintin
Sun Mar 15, 2015 9:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fuente sin destruir
Replies: 10
Views: 1399

Re: Fuente sin destruir

Parent class' destroy method already provides for destruction of ::oFont.
You do not need to do anything in your derived class
by nageswaragunupudi
Sat Mar 14, 2015 9:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fuente sin destruir
Replies: 10
Views: 1399

Re: Fuente sin destruir

Ok .If a Font is assign to a headerFont we have to destroy it. If we are to assign in a derived class, we add that destruction within the method destroy(). ok. Si asignamos una fuente al header o al footer , es responsabilidad nuestra destruirla. Si pretendemos asignarla ...
by mastintin
Sat Mar 14, 2015 9:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Fuente sin destruir
Replies: 10
Views: 1399

Re: Number Of Complete Months

... accepts pure Date variable only. This is because this function is an implementation of the very old CA-Tools function. We can have a small derived function to use this with DateTime values also: function FW_ADDMONTH( tDate, nMths )   if ValType( tDate ) == 'T'      return ...
by nageswaragunupudi
Sun Jan 04, 2015 10:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Number Of Complete Months
Replies: 9
Views: 2208

Re: Migrating to Harbour

... of RoR or Java Play Framework. The only binary is the server which is launched directly inside the app directory. PRGs are ( ONLY ) classes derived from basic classes Controller, View or Model that need to be put in the right directory ( convention vs configuration ) and are compiled on ...
by hmpaquito
Tue Dec 16, 2014 8:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Migrating to Harbour
Replies: 238
Views: 46070
PreviousNext

Return to advanced search

cron