| Thread | Last Post | Replies |
|
| Problem with VCExpress & VS2005 Standart edition | 12 Dec 2005 05:54 GMT | 2 |
When .NET 2.0 get out I ordered VS2005 Standart edition and downloaded all the express line. + the platform SDK. I had to modify some VS environment setting IN VCExpress so it could find
|
| Simulated Multiple Inheritance | 12 Dec 2005 02:05 GMT | 2 |
Comments appreciated. I coded an approach to simulating multiple inheritance of implementation in C# using PIMPL and a type based static class factory that seems to combine the extensibility of inheritance with the encapsulation of containment. Hopefully, the C++/cli coders here ...
|
| StringBuilder and LPWSTR | 11 Dec 2005 21:12 GMT | 5 |
I need to pass a StringBuilder as a parameter that expects LPWSTR (SetConsoleTitle). How do I do this in MC++? Thanks,
|
| Changing a lib? | 11 Dec 2005 17:54 GMT | 1 |
First off, thanks for any and all help this thread might receive. My problem is this, I have a dll, I convert it into a lib. What I want to do is load this lib into C++ and make a function thats an exact copy of one inside this lib.
|
| Resize Form and uninitialized memory | 10 Dec 2005 17:58 GMT | 1 |
It looks like when I make a Form resizable and/or hit the maximize button that it shows garbage (unitialized memory) for the new portions of the form and then fills it in with background color. It only shows it very briefly, but it's VERY visible during this time.
|
| Help! : single char to String^ | 10 Dec 2005 16:27 GMT | 2 |
The following code: char x_char = '0' ; String^ x_str = c_char.ToString( ) ; results in:
|
| vc8.0 crash while compiling boost-1.33.1 serialization library with /analyze | 10 Dec 2005 15:23 GMT | 6 |
VC8.0 crashes while compiling boost-1.33.1 serialization library (or any other library that includes the serialization headers) if code analysis (/analyze) is enabled. This problem did not occur with prior beta releases of boost-1.33.1 or with the VC8.0 beta. You may want to ...
|
| CComPtr pass by reference issue with VC 2005 compiler | 10 Dec 2005 01:44 GMT | 9 |
Due to the tightening of the VC++ compiler in 2005, I have run into a compiler error (from code that previously worked in 2003) using a CComPtr<ITypeLib> as an element of a std::list, as follows std::list<CComPtr<ITypeLib> >. I understand the problem, so am looking
|
| Managed program accessing classes and dialogs in unmanaged DLL | 09 Dec 2005 23:14 GMT | 3 |
I've seen at least one article on this: How to access classes, etc. managed-to-unmanaged. I can't find it. Any tricks or pointers? I guess the class name won't get munged but I'm not clear about necessary class declarations.
|
| MC++ Question | 09 Dec 2005 23:04 GMT | 1 |
With a Managed class, if I'm #including a Windows SDK header file, and call an API, it appears (according to .NET Reflector) that it automatically generates a [DLLImport()] for each API call that I make. In other words, it isn't actually calling the native method directly, ...
|
| Managed method in Native Class ? | 09 Dec 2005 22:46 GMT | 9 |
Is possible to have a managed method within a Native(un-managed) class within a \clr project? E.g. class myClass
|
| Is There Any Reason to Even Use VC++ Anymore? | 09 Dec 2005 20:25 GMT | 37 |
Except for legacy or non-.NET applications, is there any reason to use VC++ anymore? It seems that for .NET applications, there would be no reason to choose C++ over C# since C# is faster to develop with (i.e. no header files, objects are easier to create and use, C# language is ...
|
| New to MC++ | 09 Dec 2005 18:29 GMT | 3 |
I'm trying to create a Managed C++ library that extends the console features beyond System::Console capabilities. I chose MC++ over C++/CLI because I need it to work on the 1.1 framework. I haven't programmed C++ in years and I'm very very new to Managed C++. Thus, I'm having ...
|
| \CLR Mixed mode compilation woes! | 09 Dec 2005 12:11 GMT | 12 |
Iv compiled my current C++ project as \clr as i want to start putting in some specific C++\CLI code to serialize my MFC objects to .NET equivalents. The program crashes on startup, something to do with the stack frame
|
| static library woes | 09 Dec 2005 04:53 GMT | 3 |
I am trying to make a library that will read and write one of our text file formats. It is a hierarchical structure and I have modeled the classes after it. For example: class Character
|