| Thread | Last Post | Replies |
|
| error C3767: candidate function(s) not available | 08 Jun 2005 01:58 GMT | 3 |
Using VS2005Beta 2 I have VC++/CLI class defined in a Class Library DLL as: #foo.h namespace foo {
|
| array of pointers to float | 08 Jun 2005 01:42 GMT | 11 |
I am having trouble implementing the following callback: CNCSError CECWCompressor::WriteReadLine(UINT32 nNextLine, void **ppInputArray) where ppInputArray is a 3 by x array. The length of x is not known at
|
| When to add __gc decorator | 07 Jun 2005 15:09 GMT | 5 |
Hey everyone, If I am writing a .NET library using managed C++, when exactly do I have to decorate a pointer with the __gc decorator? Thanks,
|
| RichTextBox problem | 07 Jun 2005 11:57 GMT | 1 |
I want to make RichTextBox very similar to Windows Command Prompt (cmd.exe). It means that I need that nobody can delete the prompt and move cursor in window except in the same line. I use the following code:
|
| JUnit for C++ ? | 07 Jun 2005 11:37 GMT | 4 |
Is there aan equivalent of JUnit for unit testing (Visual) C++ code ? tkx, B.
|
| Get the size of managed array | 07 Jun 2005 02:10 GMT | 1 |
I've a function witch have a managed array as input and output parameters. output array has the same size as input array I'de like to declare an array witch has the same size like the input array : array<int,2>^ fct(array<int,2>^ T)
|
| calling DLL | 06 Jun 2005 18:26 GMT | 17 |
I have been successfully calling DLL's using VC++ 6.0 and also using VC++7.1 (.NET). I only mention this because I have never felt comfortable with the process, but nonetheless it did work. Recently I started calling an unmanaged DLL from a .NET app. It worked fine. Now I have ...
|
| Can I do this? | 06 Jun 2005 18:04 GMT | 4 |
I want to use Net Forms (I think thats what theyre called) to build a really sexy, cool front end - but then use Visual C++ (not VC++ .NET - because I want native code, not IL) to create a "blisteringly" fast application with a cool front end.
|
| CreateDirectory() and Directory::CreateDirectory() conflict ... | 06 Jun 2005 17:32 GMT | 1 |
Is there a way to avoid conflicts between CreateDirectory() (from API) and Directory::CreateDirectory(). The other functions from Directory class works(Exists() as example). It seems to be caused by the inclusion of "windows.h" ... but I need it.
|
| Compiler bug in VC++ .Net 2003 | 06 Jun 2005 15:05 GMT | 2 |
I have very strange situations. The following code always crashes any .Net appication that uses it. What I have: 1. The Managed C++ code (test.h and test.cpp) that defines enumeration "Els" and function that returns an array of values of this enum "Els" as output parameter ...
|
| Divide error during debug | 06 Jun 2005 14:59 GMT | 3 |
I'm running Visual Studio.NET and am experiencing a problem during debugging (i assume this will also be the case during normal operation). If the variable "test" is a double and "denom" a finite integer, the operation test = 1 / denom; results in test having a value of 0.000000! ...
|
| how to create a thread and a modal dialog from a regular dll? | 03 Jun 2005 23:30 GMT | 4 |
Hi, there, I have a multi-threaded non-MFC program that will include a regular dll which would be part of the user interface, possibly a dialog based interface. I would prefer to have the user interface dll run on its own thread. How to
|
| Posting Message in .NET | 03 Jun 2005 14:50 GMT | 3 |
What is the equivalent of PostMessage() in Managed C++; Thanks, Hugo
|
| Versions of C++ | 03 Jun 2005 09:08 GMT | 1 |
What are the versions for the Visual Studio.NET developement? I need VC++ 7.1 for developing for AutoCAD. Is VS 2002 with Service Pack 1 the correct installation?
|
| error C2146: syntax error : missing ';' before identifier 'Length' | 03 Jun 2005 08:48 GMT | 1 |
I have a VC++.net Win32 console application, however when I compile , I get this error error C2146: syntax error : missing ';' before identifier 'Length' Explain...
|