FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour TClipGet source
Posts: 47
Joined: Thu Jul 13, 2006 02:39 PM
TClipGet source
Posted: Mon Jul 20, 2009 07:07 PM

Where can get the full source code for tClipGet ?
In my fwh folder I can only find the following

FILE c:\fwh\source\classes\tClipGet only contains the following
function GetNew( nRow, nCol, bVarBlock, cVarName, cPicture, cColor )
return TClipGet():New( nRow, nCol, bVarBlock, cVarName, cPicture, cColor )

Peter
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: TClipGet source
Posted: Mon Jul 20, 2009 07:51 PM
Peter,

In the same file you find:
Code (fw): Select all Collapse
CLASS TClipGet FROM Get

   METHOD Display() VIRTUAL

ENDCLASS

which does the magic :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 47
Joined: Thu Jul 13, 2006 02:39 PM
Re: TClipGet source
Posted: Tue Jul 21, 2009 05:29 AM

Antonio

I dont understand ?

Where is the NEW methos that matches this call --> TClipGet():NEW( nRow, nCol,......... )
as well as all the other method that tClipget uses

Thanks
Peter

Peter
Posts: 1335
Joined: Fri Jun 13, 2008 11:04 AM
Re: TClipGet source
Posted: Tue Jul 21, 2009 06:04 AM
Hi Mr.Peter,

Class TClipGet is inherited from the Class GET which means all the Methods and DATA's of the CLASS Get will be available in the CLASS TClipGet and plus the methods and DATA's of the Class TClipGet

The statement CLASS TClipGet FROM Get in the FILE c:\fwh\source\classes\tClipGet.Prg means that it is inherited from the CLASS GET
Code (fw): Select all Collapse
CLASS TClipGet FROM Get

   METHOD Display() VIRTUAL

ENDCLASS


Hope I am not wrong.

Regards
Anser
Posts: 47
Joined: Thu Jul 13, 2006 02:39 PM
Re: TClipGet source
Posted: Tue Jul 21, 2009 07:02 AM

OK

The GET class the tClipGet inherits from is then presumably the XHB GET class, which is not a FWH class, and this is why I cant find the expected source code for the class - is this correct ?

Thanks
Peter

Peter
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: TClipGet source
Posted: Tue Jul 21, 2009 09:16 AM

Pete,

yes, right :-)

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion