| Thread | Last Post | Replies |
|
| /clr option | 13 Aug 2004 20:12 GMT | 16 |
We have a lot of code which runs fine under VC++ 6.0. We have to move to .NET becasue one of the librairies uses .NET classes. Does every library(including those which do not use .NET classes) have to be recompiled with /clr option?.
|
| Odd unmanaged calling managed code issues | 13 Aug 2004 15:58 GMT | 1 |
I'm a MS/.NET newbie, diving right into CLR interop. I've worked through the various issues foreign to me as a UNIX guy: multiple heap issues because I was linking to different CRT instances (ugh), calling conventions, marshalling, etc. I'm stumped on one issue, though.
|
| How to Create a Function Point for a class member function. | 13 Aug 2004 09:01 GMT | 2 |
Hi; I want to create a function point.With is point I can call the member function in a class. The Sample Code just like: __gc struct NodeMapItem
|
| Help me! Link error when upgrade old VC application to VS.NET 2003 | 13 Aug 2004 06:55 GMT | 2 |
When I upgrade my old vc6 application to VS.NET2003, I always get a linker error, I had fixed some compiling error, the error message, error LNK2019: MultiWME error LNK2019: ?????????????????? "__declspec(dllimport) protected:
|
| Binary portability of C++/CLI code | 12 Aug 2004 20:44 GMT | 9 |
I compiled the hello world program, as specified in the current C++/CLI draft (version 1.5), by using Visual C++ 2005 Express Beta 1: int main() {
|
| /OPT:REF in mixed assemblies | 12 Aug 2004 19:34 GMT | 3 |
Sorry for the long post, it's a bit epic (and sums up the last 10 hours of my life, apart from my car's gearbox melting). We've got a mixed C++ assembly that's exhibiting odd behaviour when the /OPT:REF (remove unreferenced data) linker option is set. We first noticed
|
| Implement a binary tree | 12 Aug 2004 17:58 GMT | 2 |
I have a question here regarding implementing Binary Tree. I understand that Binary Tree can be implemented in one of the following methods: 1)using nodes with pointers to two children.
|
| Implement Map in C++ | 12 Aug 2004 15:04 GMT | 3 |
I wonder what are the possible ways to implement a Map in C++? Among these methods, which is the best one and why? Thank you very much in advance.
|
| Creating a HANDLE[] in a managed class | 12 Aug 2004 10:19 GMT | 2 |
I've created a HANDLE[] in a managed class: pHandle = new HANDLE[2]; where pHandle is HANDLE* defined in my __gc class Is this an unamanged or a managed pointer? I would have thought it would be
|
| Paradox Date field to human readable format | 12 Aug 2004 09:10 GMT | 5 |
can somebody tell me how to convert the date from a Paradox .DB to human readable format? I need to write a tool to convert the 4 Bytes representing the date to a human readable format.
|
| Mixing VC 6 and .NET libs | 11 Aug 2004 23:55 GMT | 1 |
I wondering whether we can mix VC++ and .NET libs. we are in the process of porting our VC6 code to VC 2003 .NET but would like to know whether I need to port all thirdparty tools to .NET immediately.
|
| Obsolete Keywords | 11 Aug 2004 23:53 GMT | 1 |
I am trying to compile old 16-bit C code in VC++2.0. I am running into errors using the header file graph.h. This is a microsoft file that uses the keywords '__far' and '__huge'. Is there a way to replace these keywords or the entire header file itself for 32 -bit applications?
|
| Pointers to managed types as members of a __gc class | 11 Aug 2004 18:06 GMT | 3 |
I'm reading Microsoft Visual C++ .NET Step by Step, Version 2003 and I found a sentence it says : "you can't have pointers to managed types as members of a __gc class.". Why ?
|
| confusing behaviour with iterators .net 2003 | 11 Aug 2004 16:02 GMT | 3 |
Where it2 is a vector<Body3d>::const_iterator How come I can't do this float xd = (*it2).getXpos(); (Which fails with a "error C2662: 'Body3d::getXpos' : cannot convert 'this'
|
| question templates in managed c | 11 Aug 2004 13:53 GMT | 4 |
hello, i have an old library i need to port to .net. the old library is written in visual c++ 6.0 and uses templated classes. if i compile the library (after having gone through the conversion wizard), i get errors with the definitions of the templated classes. below are some ...
|