| Thread | Last Post | Replies |
|
| unmanaged .net comiled statically? | 09 Aug 2004 11:23 GMT | 1 |
Is it possible to compile an unmanaged C++ app statically? So the user doesnt require the correct framework version installed? If so how? Jason
|
| Confused about IntPtr conversion problem. | 08 Aug 2004 12:11 GMT | 3 |
I have a managed C++ function that accepts an IntPtr argument. I am passing in a variable of type HANDLE for the IntPtr argument. The compiler does not issue any warnings for this, so I am assuming it is ok (maybe this is a bad assumption). Anyhow, for some reason, the IntPtr is ...
|
| large array is not garbage collected | 08 Aug 2004 11:34 GMT | 6 |
I am reading a 160 mB file in my application. I want to access the file as shorts. FileStream->Read wants to access the file as Byte so I do the following 1) Read the filesize
|
| How to create MakeFile in VSIDE 2003 | 07 Aug 2004 20:28 GMT | 1 |
Fri. Aug. 06, 2003 10:30 PM PT In VC 6.0 you can create/ generate MakeFile of your project, but it seems this option is not there in VSIDE .NET 2003. Anybody know how to create the makefile of your project or solution ?
|
| fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f:\vs70builds\3077\vc\Compiler\Utc\src\P2\main.c', line 148) | 06 Aug 2004 22:33 GMT | 10 |
I hope that this is the correct group for these things, apologies if not. I've got a strange compiler error. It appears to be similar to the issue described in knowledgebase article 320004 except that particular problem was fixed in .NET 2003, according to the article.
|
| AppDomainUnloaded Exception (Q309684) occurring without any unmanaged code involved | 06 Aug 2004 21:48 GMT | 1 |
Hey everyone, I have an issue that requires an urgent solution. I had a look at the Technote above, and it states that the AppDomainUnloaded Exception occurs with ASP.NET when using Managed C++ extensions as a wrapper to
|
| Inherit from Class and Interface | 06 Aug 2004 20:53 GMT | 2 |
I'm looking for the right syntax to inherit my class from an Interface and a class at the same time: __interface ITest {
|
| fatal error C1001: INTERNAL COMPILER ERROR | 06 Aug 2004 19:17 GMT | 5 |
I'm getting an internal compiler error from Visual C++ .NET 2003 when I'm using managed extensions. Here is the error. Generating Code... c:\development\icu\source\common\uhash.c(869) : fatal error C1001: INTERNAL COMPILER ERROR (compiler file 'f ...
|
| Jagged Arrays and ParamArray | 06 Aug 2004 16:13 GMT | 1 |
I need to do a variable argument list in Managed C++, where each argument is a double array. I believe that this is impossible, because to do so I would need to make a jagged matrix of doubles, which is not supported. Does anyone know if this is impossible, or if there is some ...
|
| Subject: "bool[] {byte[]}" reported as type in the locals window | 06 Aug 2004 16:10 GMT | 1 |
In C#, I am calling a method implemented in Managed C++ that returns an array of booleans. This method in turn calls unto unmanaged C++ code that returns an unsigned byte array, which is implicitly casted to a bool __gc []. However, in my client C# app, when I examine this ...
|
| STRANGE behaviour when working with exceptions | 06 Aug 2004 14:56 GMT | 1 |
a strange behaviour when working with exceptions : when I divide and integer by 0 will an exception be thrown. OK but, when I divide a double by 0 is no exception thrown ??? How come ?
|
| debug assertion in dbgheap.c when loading dll | 05 Aug 2004 21:16 GMT | 3 |
I have a mixed mode c++ dll that i want to use from a c# project. However, I get an debug assertion when the dll is loaded. The assertion is in line 1301 in dbgheap.c in the function extern "C" _CRTIMP size_t __cdecl _msize_dbg
|
| VC++ Releases | 05 Aug 2004 16:25 GMT | 5 |
I am an all new member to this site. Could anyone tell me what th difference between VC++ Releases 5 and 6 are?? Foun good tutorial for VC++ 5.....how applicable will it be for Vc+ 6??
|
| Create DLL with undecorated names | 05 Aug 2004 15:05 GMT | 4 |
I want to create an "MFC DLL" with VC.NET that will be explicitly loaded when needed. That is, the main application will do a "LoadLibrary" call and then a series of "GetProcAddress" calls to set up the entry points. What I want is to be able to refer to the entry points as simple ...
|
| How to instantiate a class for a C++ DLL in C# | 05 Aug 2004 09:45 GMT | 1 |
I'm having a lot of trouble trying to instantiate a C++ class from a DLL in a C# application. The DLL was written in C++ (Visual Studio 6.0). I have the full source code, as well as the compiled DLL. I was hoping I'd be able to use it using the DllImport attribute, and creating ...
|