FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour Information about TGet Class.
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Information about TGet Class.
Posted: Wed Oct 14, 2009 09:14 AM

Hi,

I want to find out Where is the Get class source in TClipGet class which is inherited from get?

thanks,

Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
Re: Information about TGet Class.
Posted: Wed Oct 14, 2009 09:17 AM

Hakan,

FWH\source\classes\tget.prg

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: Information about TGet Class.
Posted: Wed Oct 14, 2009 09:24 AM
Thanks James,

I have seen the TGet. There is a oGet DATA in this class that is created from function FWGetNew. This function creates a TClipGet instance.

Code (fw): Select all Collapse
#include "fivewin.ch"

//----------------------------------------------------------------------------//

#ifdef __XPP__
   #define GetNew _GetNew
#endif

#ifndef __XPP__

CLASS TClipGet FROM Get

   METHOD Display() VIRTUAL

ENDCLASS

#endif

//---------------------------------------------------------------------------//

function FWGetNew( nRow, nCol, bVarBlock, cVarName, cPicture, cColor )

return TClipGet():New( nRow, nCol, bVarBlock, cVarName, cPicture, cColor )

//---------------------------------------------------------------------------//


As you can see TClipGet is inherited from Get Class. I am searching the this Get class.
Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06
Posts: 4840
Joined: Fri Nov 18, 2005 04:52 PM
Re: Information about TGet Class.
Posted: Wed Oct 14, 2009 09:32 AM

Hakan,

I see, that must be the (x)Harbour get class. You will need the (x)Harbour source.

James

FWH 18.05/xHarbour 1.2.3/BCC7/Windows 10
Posts: 1387
Joined: Fri May 23, 2008 01:33 PM
Re: Information about TGet Class.
Posted: Wed Oct 14, 2009 12:04 PM

Thanks James,

I will try to find it.

Regards,



Hakan ONEMLI



Harbour & MSVC 2022 & FWH 23.06

Continue the discussion