2. Visual Studio NET Enterprise Architect 2002 and Visual Studio NET 2003
very hard is fix exactly group for this question.. but I am sure that some of people here have some experience with these compilers: Visual Studio NET Enterprise Architect 2002 and Visual Studio NET 2003 1. What is difference between Visual Studio NET Enterprise Architect 2002 and Visual Studio NET 2003 2. If I try user Visual Studio NET 2003, what I have not included inside (in compare with Visual Studio NET 2003)? 3. Why Visual Studio NET 2003 is created? 4. Have Microsoft some newer versions of Visual Studio NET?
3. Visual Studio NET Enterprise Architect 2002 and Visual Studio NET 2003 difference
4. Visual C++6, MFC project to Visual Studio 2005 MFC
Hello, I convert a Visual C++6, MFC project to Visual Studio 2005 MFC and I have a lot of warnings. What I want? I want to sitch off the warnings and I make following without good result. How is the correct way to do this? File: stdafx.h #if ! defined(AFX_STDAFX_H__63C457B5_7B4F_11D5_A777_0001021D6D89__INCLUDED_) #define AFX_STDAFX_H__63C457B5_7B4F_11D5_A777_0001021D6D89__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 #define _CRT_SECURE_NO_DEPRECATE 1 #ifdef _MSC_VER_VS2005 # pragma warning(disable:4927) # pragma warning(disable:4244) # pragma warning(disable:4018) # pragma warning(disable:4311) # pragma warning(disable:4312) #endif Second question: m_ListCtrl.SetItemData( nZeile, (DWORD) pArtikelposition ); warning C4311: 'Type': Pointer 'CArtikelposition *' to 'DWORD' How can I do it correct? Regards Andrea
5. Visual C++6, MFC project to Visual Studio 2005 MFC
6. Visual Studio .NET 2003\Vc7\include\vector(621) : error C244 confusion
Hello,
I am getting the following error using .NET 2003 and I wonder if
anyone can help me understand what is going on.
godcDoc.cpp(228) : warning C4267: '=' : conversion from 'size_t' to
'int', possible loss of data
C:\Program Files\Microsoft Visual Studio .NET
2003\Vc7\include\vector(621) : error C2440: 'initializing' : cannot
convert from 'std::vector<_Ty>::iterator' to
'std::vector<_Ty>::size_type'
with
[
_Ty=Network *
]
and
[
_Ty=Network *
]
No user-defined-conversion operator available that can perform
this conversion, or the operator cannot be called
C:\Program Files\Microsoft Visual Studio .NET
2003\Vc7\include\vector(620) : while compiling class-template member
function 'std::vector<_Ty>::iterator
std::vector<_Ty>::insert(std::vector<_Ty>::iterator,const _Ty & )'
with
[
_Ty=Network *
]
godcDoc.cpp(136) : see reference to class template
instantiation 'std::vector<_Ty>' being compiled
with
[
_Ty=Network *
]
It seems to be happening when the following lines are commented in.
std::vector<Network *> both;
both.push_back(&m_iNetwork);
Network is quite a complicated class that contains a lot of pointers
to things but all the #includes / forward declararions are in place.
Any help VERY much appreciated.