| Thread | Last Post | Replies |
|
| ldap_init() can partly work but ldap_open works well | 11 Aug 2004 08:30 GMT | 1 |
I have met a stang thing:. After call ldap_init(), pLDAP is not null, but it member "ld_host" is NULL, (it should be "192.168.0.78"). and the following set_option works well. I have try to use both VC6's Wldap32.lib and platform Wldap32.lib.
|
| Is there any compile switch that could turn all old C++ code into managed class? | 11 Aug 2004 05:50 GMT | 3 |
If I have to add __gc in every class, it would be a huge work. Is there any option that could compile all C++ class into manganged class without modify any source code?
|
| conversion operators ?? | 10 Aug 2004 20:15 GMT | 3 |
I want to convert an integer to an object of type 'MyNumber' using implicit conversions. MyNumber* pDt = 10; but it doesn't work ??
|
| Kang Su Gatlin: Linker Whitepaper question | 10 Aug 2004 20:00 GMT | 3 |
I recently read your whitepaper under the "extremely long link times" post and have a question that I was hoping you could answer. My question is based on the following paragraph: Directives
|
| How does IJW determine version of CLR to load? | 10 Aug 2004 17:50 GMT | 2 |
We have some managed assemblies that are compiled with the /clr switch for some native code to load. These are currently compiled and linked against a pure .NET 1.0 environment. I have both VS.NET 1.0 and 1.1 installed on my box. I noticed (in debugger)
|
| URGENT: Mixing Managed/unmanaged C++ | 10 Aug 2004 16:39 GMT | 8 |
I write a Dll of managed C++ class that contains a piece of code like the following liines. This code always fails when attempting to create a new not managed class. Someone has an explanation?
|
| Newbie question..... | 10 Aug 2004 16:13 GMT | 19 |
Can you create C++ apps that do not require the .Net runtimes using C++ .Net?
|
| run compiler from command-line ? | 10 Aug 2004 16:06 GMT | 1 |
is there a C++.Net compiler available from the command-line ? as 'csc.exe' for C# and 'vbc.exe' for VB.NET. thanks Chris
|
| VC 8.0: Where is two phase lookup? | 10 Aug 2004 15:19 GMT | 29 |
There have been many announciations that VC 8.0 will finally support two phase template lookup; now, after I installing VC 2005 Express I had to realize that it still doesn't! What has happend to these plans???
|
| ISAPI in C++.net Book Recommendation Needed | 10 Aug 2004 07:49 GMT | 8 |
I am a C# programmer with a little C++ experience from a few years ago. I need to write some ISAPI filters and extensions to run on the latest version of IIS on .net Server 2003. Can anyone recommend an excellent book that has some decent samples to get an out of shape C++ ...
|
| Debug::Assert showing up in release | 10 Aug 2004 00:10 GMT | 1 |
I created a simple .NET C++ console application. And the Debug::Assert(false) statement is popping a message box in release version also. Any idea why ? Any complier settings I need to do to not show it in release version ?
|
| Can't find a way to get the ICeeGen interface | 09 Aug 2004 17:23 GMT | 3 |
1. I am writing some kind of a CLI Linker 2. I am using the unmanaged meta-data API. I wonder browsing "cor.h" I have encountered the 'ICeeGen' this interface is retrieved by the 'ICorModule' interface, I didn't find any API that provide me the means to get an 'ICorModule' ...
|
| COM or .net Assembiles Why? | 09 Aug 2004 16:59 GMT | 5 |
I am currently working on desgin of architecture for a Data Analysis & Graphical Display Tool Kit project. I need to build different components for each Data Analysis Technique & Graphical Display.
|
| Connecting to other pc | 09 Aug 2004 13:15 GMT | 2 |
I'm creating an application which uses PerformanceCounters, and when I specify a machinename in my domain that isn't connected yet ("Access is denied"), I want to connect to it at that point. So I was wondering if there's either a way to bring up the Connect To dialog
|
| boxing ??? | 09 Aug 2004 12:12 GMT | 1 |
I declare an integer and use the ToString()-method (see code below) . That works fine Now, using the same integer do I use the GetType()-method --> compiler error ==> error C3610: 'Int32': value type must be 'boxed' before method 'GetType'
|