TClipGet source

Post Reply
peterk
Posts: 47
Joined: Thu Jul 13, 2006 2:39 pm

TClipGet source

Post by peterk »

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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: TClipGet source

Post by Antonio Linares »

Peter,

In the same file you find:

Code: Select all

CLASS TClipGet FROM Get

   METHOD Display() VIRTUAL

ENDCLASS
 
which does the magic :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
peterk
Posts: 47
Joined: Thu Jul 13, 2006 2:39 pm

Re: TClipGet source

Post by peterk »

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
User avatar
anserkk
Posts: 1280
Joined: Fri Jun 13, 2008 11:04 am
Location: Kochi, India

Re: TClipGet source

Post by anserkk »

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: Select all

CLASS TClipGet FROM Get

   METHOD Display() VIRTUAL

ENDCLASS
Hope I am not wrong.

Regards
Anser
peterk
Posts: 47
Joined: Thu Jul 13, 2006 2:39 pm

Re: TClipGet source

Post by peterk »

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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: TClipGet source

Post by Antonio Linares »

Pete,

yes, right :-)
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply