Can't new CXTPPropertyGridItem
Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Property Grid
Forum Description: Topics Related to Codejock Property Grid
URL: http://forum.codejock.com/forum_posts.asp?TID=12038
Printed Date: 21 November 2024 at 11:15pm Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com
Topic: Can't new CXTPPropertyGridItem
Posted By: cmt75827
Subject: Can't new CXTPPropertyGridItem
Date Posted: 31 August 2008 at 10:49pm
Using MS VC++ .net version 2003.
I can't new CXTPPropertyGridItem. I get the following link errors:
VfsTools error LNK2001: unresolved external symbol "public: virtual long __thiscall CXTPAccessible::PutAccessibleValue(struct tagVARIANT,unsigned short *)" (?PutAccessibleValue@CXTPAccessible@@UAEJUtagVARIANT@@PAG@Z) VfsTools error LNK2001: unresolved external symbol "public: virtual long __thiscall CXTPAccessible::PutAccessibleName(struct tagVARIANT,unsigned short *)" (?PutAccessibleName@CXTPAccessible@@UAEJUtagVARIANT@@PAG@Z) VfsTools error LNK2001: unresolved external symbol "public: virtual long __thiscall CXTPAccessible::GetAccessibleDefaultAction(struct tagVARIANT,unsigned short * *)" (?GetAccessibleDefaultAction@CXTPAccessible@@UAEJUtagVARIANT@@PAPAG@Z) VfsTools error LNK2001: unresolved external symbol "public: virtual long __thiscall CXTPAccessible::GetAccessibleKeyboardShortcut(struct tagVARIANT,unsigned short * *)" (?GetAccessibleKeyboardShortcut@CXTPAccessible@@UAEJUtagVARIANT@@PAPAG@Z) VfsTools error LNK2001: unresolved external symbol "public: virtual long __thiscall CXTPAccessible::GetAccessibleHelpTopic(unsigned short * *,struct tagVARIANT,long *)" (?GetAccessibleHelpTopic@CXTPAccessible@@UAEJPAPAGUtagVARIANT@@PAJ@Z) VfsTools error LNK2001: unresolved external symbol "public: virtual long __thiscall CXTPAccessible::GetAccessibleHelp(struct tagVARIANT,unsigned short * *)" (?GetAccessibleHelp@CXTPAccessible@@UAEJUtagVARIANT@@PAPAG@Z) VfsTools error LNK2001: unresolved external symbol "protected: virtual long __thiscall CXTPPropertyGridItem::GetAccessibleDescription(struct tagVARIANT,unsigned short * *)" (?GetAccessibleDescription@CXTPPropertyGridItem@@MAEJUtagVARIANT@@PAPAG@Z) VfsTools error LNK2001: unresolved external symbol "protected: virtual long __thiscall CXTPPropertyGridItem::GetAccessibleValue(struct tagVARIANT,unsigned short * *)" (?GetAccessibleValue@CXTPPropertyGridItem@@MAEJUtagVARIANT@@PAPAG@Z) VfsTools error LNK2001: unresolved external symbol "protected: virtual long __thiscall CXTPPropertyGridItem::GetAccessibleName(struct tagVARIANT,unsigned short * *)" (?GetAccessibleName@CXTPPropertyGridItem@@MAEJUtagVARIANT@@PAPAG@Z)
|
Replies:
Posted By: mgampi
Date Posted: 03 September 2008 at 5:09am
Hi;
Try to set project option "Treat wchar_t as built in type" (/Zc:wchar_t).
------------- Martin
Product: Xtreme Toolkit v 22.1.0, new Projects v 24.0.0 Platform: Windows 10 v 22H2 (64bit) Language: VC++ 2022
|
Posted By: cmt75827
Date Posted: 08 October 2008 at 10:55pm
Hi,
After setting project option "Treat wchar_t as built in type" (/Zc:wchar_t), the game engine used in my program would bring lots of link errors. So I must set
project option "Treat wchar_t as built in type" to NO in my program. Is there another solution? Thanks.
|
Posted By: Osiris
Date Posted: 10 November 2008 at 8:14am
Hi,
you can compile the ToolkitPro libraries you need with the same settings you use in the rest of your project (e.g. "Treat wchar_t as built in type" = NO).
Unfortunately for the "Treat wchar_t as built in type" option you can not use the codejock deployment wizard. So you have to recompile the libraries by 'hand' (resp. the VS).
|
|