Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can i install a new compontent (TCustomListControl1)

Status
Not open for further replies.

cag3

Programmer
Apr 20, 2003
4
JO
[C++ Error] CustomListControl1.cpp(16): E2352 Cannot create instance of
abstract class 'TCustomListControl1'
[C++ Error] CustomListControl1.cpp(16): E2353 Class 'TCustomListControl1' is
abstract because of '_fastcall TCustomListControl::GetCount() = 0'
[Linker Fatal Error] Fatal: Unable to open file 'DCLUSR.OBJ'

what am i doing wrong?
 
One of two things... Either you didn't compile the dclusr.bpk package, or you don't have the source directory in the path.

Chris
 
Oops, that's only for the fatal error. The other errors are because, well exactly what they say. You can't create an instance of an Abstract class. You need to define the function GetCount().

Chris
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top