| Thread | Last Post | Replies |
|
| CClientDC | 26 Oct 2005 19:22 GMT | 1 |
The CClientDC class is derived from CDC and takes care of calling the Windows functions GetDC at construction time and ReleaseDC at destruction time. This means that the device context associated with a CClientDC object is the client area of a window.
|
| Managed C++ projects always rebuild | 26 Oct 2005 18:06 GMT | 2 |
Hello, I have started to use managed C++ in VS 2003. I have several .NET class libraries written in MC++. I am finding the rebuild tendencies in VS to be very annoying. If I make a minor change to a C++ file (not header), it causes all depend projects to
|
| Is C++ in .NET still the same MFC as visual studio 6.0 | 26 Oct 2005 15:49 GMT | 7 |
If you want to create an GUI application using a tool in visual studion 6.0 you are forced to use MFC. I just want to know about the developing GUI application in C++ visual studio .net. Is it still the same old MFC you use or it it completely
|
| serialization and deserialization problem | 26 Oct 2005 13:06 GMT | 3 |
Hi i am serializing a 'ref struct' object as follows : private: void Seri( String ^path, Object^ obj ) { FileStream^ fileStrm ;
|
| Virtual bool bug in VS2005 ? | 26 Oct 2005 09:45 GMT | 5 |
Does anyone know if the "virtual bool bug" is still present in VS2005 when calling between managed and unmanaged code? Thanks Kevin
|
| Conversion C#->CLI (snippets) | 26 Oct 2005 06:26 GMT | 7 |
Thanks to everyone who has helped with some of my elementary questions about C++/CLI equivalents to C#. I have a few more items that are giving me headaches. All help is appreciated. What is the proper way to convert the following?
|
| STL and Managed C++.NET | 26 Oct 2005 02:13 GMT | 8 |
As I try to create a list of pointers to a garbage collected class I've created, I'm learning it's not without problems to create an instance of such list. In fact, so far it won't let me. Apparently STL containers like 'list' are not garbage collected, hence all the ...
|
| Separating Definition and Declaration of a class | 25 Oct 2005 22:43 GMT | 1 |
As all we know, in order to remove cyclic includes in C++ we seperate the declarations and definitions of classs and it's member in two files Header (*.h) and source files (*.cpp). This is not a problem for C# as there is no concept of include.
|
| Returning a Pointer | 25 Oct 2005 22:39 GMT | 5 |
its a c++ question. If I have the following code: TCHAR * getsomestring() { TCHAR buff[2000];
|
| C++/CLI equivalent to as keyword? | 25 Oct 2005 21:01 GMT | 10 |
How would this C# contruct be represented in C++/CLI? Or is it even possible? PolicyLevel level = (enumerator->Current) as PolicyLevel; Thanks,
|
| Serial port programming | 25 Oct 2005 19:25 GMT | 2 |
If I try to set com port to baud rate higher than 115200pbs using SetCommState() API, it returns with an error. The error code is 87 which means INVALID_PARAMETER. I tried using 128000 bps and 256000 bps. These rates are valid in deed.
|
| CComPtr Question | 25 Oct 2005 18:01 GMT | 1 |
Hey guys, Quick Question. Lets say Im using the XMLHTTPObject to return an IStream. In General, is it better to return the object as CComPtr<IStream> spIstream;
|
| c++/CLI mixed mode dlls and clr initialisation | 25 Oct 2005 16:39 GMT | 5 |
I have a plain unmanaged exe (no /CLR) that is supposed to to use classes from a mixed mode dll (dll that uses .NET internally). That dll only needs to expose unmanaged interfaces (classes and/or functions). This is of course no problem and it works fine. However I have the special ...
|
| Conversion Question: C# -> C++ CLI | 25 Oct 2005 14:05 GMT | 6 |
I am beginning to write my first applications with C++/CLI and was wondering if someone could demonstrate the proper way to convert a sample piece of code. I just need some help understanding the new syntax for handles and iterating, etc. Thanks in advance for the help.
|
| Is it possible to compile and run c programs in the visual C++ .NE | 25 Oct 2005 12:39 GMT | 3 |
I have a bunch of C programs from sun. I would like to port them over to PC. I am wondering if I can simply recompile and run them in Visual C++ .NET without having to making a lot of changes? Specifically how to invoke C run time
|