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 )
TClipGet source
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: TClipGet source
Peter,
In the same file you find:
which does the magic
In the same file you find:
Code: Select all
CLASS TClipGet FROM Get
METHOD Display() VIRTUAL
ENDCLASS
Re: TClipGet source
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
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
Re: TClipGet source
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
Hope I am not wrong.
Regards
Anser
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
Regards
Anser
Re: TClipGet source
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
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
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact: