| Thread | Last Post | Replies |
|
| Compile error C3641 | 31 Dec 2005 23:09 GMT | 3 |
I am receiving a compile error when attempting to include Directshow in a managed C++ program using Visual C++ 2005 Express Edition Version 8. The .NET framework is version 2.0.50727. To recreate the error, do the following steps in Visual C++ 2005 Express Edition:
|
| .Net security and mixed assemblies | 31 Dec 2005 16:59 GMT | 1 |
I have a series of assemblies which used to be unmanaged code and have now had the /clr switch thrown on them to create managed code, but using win32 types etc rather than Safe CLR code. How much of the .Net security facilities can be applied to this code?
|
| VS.NET 2K5 editor problems | 31 Dec 2005 08:22 GMT | 2 |
When I add a new line in my VC++ application, the editor is really slow to add the new line. Is there a configuration setting I can use to speed up line add's? Thanks. -Mike
|
| Help Needed...its urgent plz | 30 Dec 2005 22:22 GMT | 3 |
Hi someone plz help me. I have made a dll in VC++ .NET using following specifications extern "C" {
|
| Unable to cast object | 30 Dec 2005 20:55 GMT | 10 |
I have a C++/CLI interface IPlugin in one assembly (a windows service) that is inherited and implemented in another assembly (dll) by a class CPlugin. I want to be able to create instance of this class dynamically at runtime, so I load the dll assembly using
|
| "Poll" Has C# Generally Replaced C++ | 30 Dec 2005 13:17 GMT | 71 |
Is it your general opinion that C# is generally designed/intended/ready to replace C++? I know the answer is not black and white but please repond YES or NO (add any comments if you would like) I just thought it might be interesting to get a tally. This is related to a
|
| How to update a Edit Control as fast as possible? | 29 Dec 2005 14:20 GMT | 3 |
In my program I tried to update a edit control's text very fast, but It seems there's no time to update it. Following is my code. IDC_EDIT1 is a edit control; //***************************
|
| XP Look And Feel in VSC++6 and VSC++.NET | 28 Dec 2005 09:21 GMT | 1 |
How can I get the Windows XP look and feel in Visual Studio C++ 6 and in Visual Studio C++ .NET?
|
| How to overload [][] operator in C++.NET | 28 Dec 2005 08:39 GMT | 2 |
In managed C++, can I overload the operator [] to access data members in the following way Create object objTime; seconds = obj["Hour"]["Min"];
|
| removing msvcp80 dependency | 28 Dec 2005 08:02 GMT | 5 |
I wrote some network n multithreading code in pure c++, my exe compiles with only 9k. But it requires msvcp80.dll & msvcr80 dlls to run on a different machine. I want to build my exe such that I dont have to provide these dlls with my exe. I know that size would increase but thats ...
|
| Compilation error ostringstream | 28 Dec 2005 07:59 GMT | 3 |
I can't use STL class 'ostringsstream' in an VC++.net project, because compilation produces the following error: Microsoft Visual Studio .NET 2003\Vc7\include\ostream(243): error C2039: 'failed': no element of
|
| Truth or fiction __LINE__ and C1055? | 28 Dec 2005 07:03 GMT | 1 |
This is related to my last post “Should templates be included in pch files?”. After searching for more information on C1055 I found several mentions of __LINE__ causing this to happen more often. Is there any truth to this?
|
| CLI C++: Events in Interfaces | 28 Dec 2005 06:14 GMT | 1 |
All - I am facing couple of problems with events in CLI C++. If i have an interface that declares few events, and a ref class implements that interface, should it do anything extra from events perspective?
|
| VS 2005: Dispose method Reserved | 27 Dec 2005 21:41 GMT | 13 |
All - As we all know, Dispose method is reserved in C++ 8 and the expected syntax is to use ~MyClass(). In 1.1, we used to have following structure for Dispose
|
| operator= for derived class | 27 Dec 2005 15:40 GMT | 3 |
I'm having a problem with a derived class. When a copy is made of the object it does indeed copy the additional member variables of the object but it does not seem to be copying the members of the base class. I have a class that is derived fom Cwnd, as follows:
|