DWF
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Problem building DWFTK.SLN with Visual Studio 2003
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
63 Views, 2 Replies
10-13-2003 10:05 PM
Can anyone help me with how to lose the error? :-
error C2552: 'DWFXmlBuilder::_handlerEntries': non-aggregates cannot be initialized with initializer list. XMLBuilder.cpp - line 44.
Using Visual Studio 2003 Pro. I am better suited to VB.NET/C#.
error C2552: 'DWFXmlBuilder::_handlerEntries': non-aggregates cannot be initialized with initializer list. XMLBuilder.cpp - line 44.
Using Visual Studio 2003 Pro. I am better suited to VB.NET/C#.
*Autodesk\
Re: Problem building DWFTK.SLN with Visual Studio 2003
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-14-2003 02:27 AM in reply to:
tech-22
The posted Dwf toolkit was built for use with VC 7,
not VC 7.1. Until we post the updated toolkit, you can simply remove the
curly braces from line 44:
not VC 7.1. Until we post the updated toolkit, you can simply remove the
curly braces from line 44:
OLD:
{ BUILDER_HANDLER_MAP_ENTRY(typeid(XmlBuilder),
(PFNBuilderHandlerMethod)0) }
(PFNBuilderHandlerMethod)0) }
NEW:
BUILDER_HANDLER_MAP_ENTRY(typeid(XmlBuilder),
(PFNBuilderHandlerMethod)0)
(PFNBuilderHandlerMethod)0)
style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
"tech-22" <Can
href="mailto:clive@tech-22.com">clive@tech-22.com> wrote in message
href="news:f192bf6.-1@WebX.maYIadrTaRb">news:f192bf6.-1@WebX.maYIadrTaRb...
anyone help me with how to lose the error? :-
error C2552:
'DWFXmlBuilder::_handlerEntries': non-aggregates cannot be initialized with
initializer list. XMLBuilder.cpp - line 44.
Using Visual Studio 2003 Pro. I am better suited to
VB.NET/C#.
Re:
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
10-14-2003 04:22 PM in reply to:
tech-22
That worked fine - Thank you
