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
Hakan ONEMLI
Harbour & MSVC 2022 & FWH 23.06
Hi,
I want to find out Where is the Get class source in TClipGet class which is inherited from get?
thanks,
Hakan,
FWH\source\classes\tget.prg
James
#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 )
//---------------------------------------------------------------------------//Hakan,
I see, that must be the (x)Harbour get class. You will need the (x)Harbour source.
James
Thanks James,
I will try to find it.