| Thread | Last Post | Replies |
|
| Arrays - Jagged - MultiDimensional | 15 Jan 2005 03:08 GMT | 3 |
I am trying to use jagged and multi-dimensional arrays in C++. In C# these work fine // for jagged arrays string [][] jaggedArray = new string [3][];
|
| destroying value classes | 14 Jan 2005 22:22 GMT | 1 |
Since value classes are not managed by the garbage collector and can't have destructors but can have member data allocated on the C++ heap, how does this data get destroyed? For example, __value class vclass
|
| Problem with WndProc in VS.NET 2005(CLI C++) | 14 Jan 2005 20:37 GMT | 2 |
if I have the compiler option /clr:oldSyntax in a Windows Forms application protected: void WndProc(System::Windows::Forms::Message* m) is called
|
| How do I run a custom compiler. | 14 Jan 2005 15:30 GMT | 2 |
I am porting an instrumentation tool from linux to Visual C/C++. We designed the tool to be a replacement for the compiler. The tool takes c/c++ files and instruments (adds code) and pipes the new code through the original compiler.
|
| Extracting Data from a Text File in C# | 14 Jan 2005 15:27 GMT | 1 |
I am relatively new to the C# language and need to extract data from a text file. I would like to be able to search the file which is tab delimmited and extract various fields. I have been using StreamReader to read the file but I am not sure of the method that actually searches ...
|
| Read text based file on double-click | 14 Jan 2005 11:11 GMT | 5 |
I have a file (mytest.fle) it is just a text file with a different extension. I would like to be able to open this file through my C++ application and read it in as a string. For example, I would right click on this file, select open with, then
|
| How to query interface using gcroot? | 14 Jan 2005 03:09 GMT | 2 |
I have a few C# .NET components which might implement one or several interfaces, let say I1, I2 and I3. The unmanaged C++ client consumes this component using gcroot template pointer. How client application can find out
|
| byte[] as output parameter in managed C++ | 13 Jan 2005 13:45 GMT | 3 |
I would like to know the managed C++ syntax of the following method (defined in C#): void temp(out byte[] byteArr). I tried something like:
|
| Receiving ostream linker errors from VC6 built library | 13 Jan 2005 13:26 GMT | 1 |
I have a library that is built in VC6 which contains references to the new iostream instead of "iostream.h" to accomodate my .NET Studio built C++ application. However, in debug mode, I
|
| Changes in Microsoft Visual Studio 2005 Beta | 12 Jan 2005 20:53 GMT | 2 |
Now, I have to develop under Microsoft Visual Studio 2005 Beta, while I used to develop under Visual C++ .NET. That means I have to migrate all my former projects into this environment. The problem is that I used to use unmanaged code and I notice that there are so many
|
| Overlapped problem with CreateNamedPipe in NT Service | 12 Jan 2005 10:53 GMT | 4 |
I have a problem: Function CreateNamedPipe (a piece of source below) called in a NT service I get an error 997 - Overlapped I/O operation is in progress. When I run the same code as oridinal application (not NT service) everything
|
| error PRJ0002 returned from 'link.exe' | 12 Jan 2005 09:53 GMT | 2 |
I'm getting the following error when linking a Visual C++ .NET 2003 program. What can be the reason? It worked yesterday on the same machine. Linking...
|
| Wrap old C DLL in new unmanaged C++ / Managed C++ DLL | 12 Jan 2005 07:33 GMT | 3 |
I have an old C DLL that I want to access via C#. I'm doing this via an outer DLL that wraps the old C DLL in an unmanaged C++ class, which is in turn wrapped in a Managed C++ class. Both these unmanaged C++ and managed C++ classes are compiled into a single assembly
|
| bswap intrinsic | 12 Jan 2005 05:57 GMT | 3 |
Is there an intrinsic to wrap the bswap x86 instruction. I have written a function to do this with inline assembler but I am wondering if an intrinsic wouldn't be a better solution. Regards,
|
| VC++ | 11 Jan 2005 21:27 GMT | 2 |
 Signature hello I want to use directx9 with C++ If I use VC++.net (unmanage) how different is it to VC++6
|