| Thread | Last Post | Replies |
|
| VB.Net Compile Error | 28 Feb 2006 21:31 GMT | 1 |
I am new to vb.net. I converted VB6 project over to .net and I am receiving this error error when I try to compile. The ADODB is reference list. Reference required to assembly 'ADODB' containing the type 'ADODB.CursorLocationEnum'. Add one to your project.
|
| LNK2005 from a C++/CLI dll linking against a non-CLR C++ static library | 28 Feb 2006 19:04 GMT | 3 |
I have some static C++ libraries that I wrote in VS2003 but which upgraded fine when i went to VS2005 Pro. In them i overload the global versions of operators new, new[], delete, and delete[]. I also use the STL and parts of boost (shared_ptr<> and weak_ptr<>) pretty heavily. ...
|
| msvc 8 bug: compiler is out of heap space | 28 Feb 2006 14:53 GMT | 1 |
Here a compiler bug of msvc 8 (14.00.50727.42): fatal error C1060: compiler is out of heap space Without the virtual inheritance it compiles fine. GCC has no problems.
|
| equivalent of MouseButtons.Left in VC++.NET | 28 Feb 2006 14:45 GMT | 1 |
Please, what is the equivalent code of if(e.Button == MouseButtons.Left) in VC++.NET Thanks in advance
|
| Get Device Notification Event in Windows Nt Services | 28 Feb 2006 14:35 GMT | 1 |
i had created a Windows NT service in VC 6.0 and i want to develop sasme thing in VC++.Net as per my Requirement. In VC 6.0 we get the Notification Like SERVICE_CONTROL_DEVICEEVENT by Registering through "RegisterDeviceNotification" and for that we r using
|
| Change project type in VC6 | 28 Feb 2006 13:25 GMT | 3 |
I have a project (Win32 application) that I want to change to a console application. Does anyone know what to edit in which file, to implement the change?
|
| How to implement IEnumerator<T> in C++/CLI | 28 Feb 2006 13:01 GMT | 1 |
I tried but failed to implement a template class that support IEnumerator<T> interface using C++/CLI in VS 2005 Professional version. I could not figure out the proper syntax to implement the property "Current". The challange is that I need to implement two versions of the ...
|
| Managed for all New Apps? | 28 Feb 2006 07:55 GMT | 12 |
For all new desktop apps is managed/CLR recommended? I.e. Native MFC/Win32 not recommended in general for new desktop apps? Speaking in general, not referring to exceptions (e.g. drivers)
|
| How to Open a Video Capture Window? | 28 Feb 2006 04:33 GMT | 1 |
I know how to open a video capture window in the Windows API, how do you do it in dot-net? Is it encapsulated in one of the name-spaces?
|
| VC++ 2005 Books | 28 Feb 2006 00:02 GMT | 2 |
I am just starting of VC++ .Net 2005. Can someone suggest of any good books or any good websites for beginners. Thanks, -Asfar
|
| managed type_id | 27 Feb 2006 23:24 GMT | 1 |
what is a correct syntax for typeid inC++ CLI. Thanks. Boni void test( Object ^Value_){
|
| Debug/release libs | 27 Feb 2006 23:22 GMT | 6 |
I have following problem. I created a static libruary (mylib.lib). I compiled it with Multithreaded DLL runtime in release mode. Now I want to give out this library. But users who use it should be able to debug their programs (i.e. compile their programs in debug mode ...
|
| Definition of WINVER | 27 Feb 2006 10:24 GMT | 6 |
Using someting like #define WINVER 0x0500 in a header file works perfect, i.e. the preprocessor sees the definition. But I would like to set WINVER in the IDE (Properties -> C/C++ -> Preprocessor -> Preprocessor Definitions).
|
| [Serializable] and generic inheritance | 27 Feb 2006 09:37 GMT | 2 |
I have a class like the following: using namespace System::Collections::Generics; [Serializable] public ref class StringMap : public Dictionary<String^, String^>
|
| Template class as friend | 26 Feb 2006 23:58 GMT | 2 |
ist it possible to have a template class or func as friend of other class: Folowing returns syntax errors template< typename T> class test{}; template< typename T> int func (Ta);
|