| Thread | Last Post | Replies |
|
| Can't get VS editor to indent case labels (set to Emacs) | 23 Nov 2005 23:51 GMT | 1 |
Re VS2005 editor in Emacs mode (options->env->keyboard mapping) First of all, there are very few editor options for formatting C/C++ code. Only three option pages. C# has about 10, I believe. Why are there no C++ equivalents to C#'s detailed formatting options?
|
| Problem with Class Viewer | 23 Nov 2005 23:34 GMT | 2 |
I changed the name of a method in the editor while looking at it in the Class Viewer. Now the Class Viewer can't see the new name ans still sees the old name. This is reflected in the bars at the top that let you editor-jump to a particular method in your class. This tool also ...
|
| Visual C++ Projects in Visual Studio | 23 Nov 2005 22:28 GMT | 1 |
I have a Visual C++ Project (a C++ dynamic DLL) in Visual Studio 2003 NET. I want to use for example the _beginthreadex() function, but I cannot compile my code. The compiler breaks up with the message : '_beginthreadex': identifier not found, even with argument dependent
|
| Interface to Access 2000 Database | 23 Nov 2005 22:18 GMT | 1 |
What is the easiest way to interface, from MFC, and Access 2000 database? Eitan
|
| CAtlRegExp so limited? | 23 Nov 2005 15:11 GMT | 1 |
I don't manage to use the instance number meta-character brace in ATL regular expressions. For instance : \d{5} meaning 5 digits fails with '01234'
|
| Registering for .NET events in MFC C++ (How) | 23 Nov 2005 12:46 GMT | 1 |
Folks, I have a C# .NET Assembly that is called from an MFC C++ application. The assembly is marked as COM visible so I'm accessing the assembly from MFC C++ via COM. Everything works great but here is my question:
|
| managed C++ link error | 23 Nov 2005 10:01 GMT | 7 |
I'm getting the following error when attempting to link a managed C++ dll. I can't find any reference to these errors with google. Can anyone help? I've included the class definition causing the errors below.
|
| Creating and using mixed assemblies | 23 Nov 2005 09:34 GMT | 2 |
I have a non-MFC DLL in my legacy application and now I want to add some managed code inside one of its classes (not exposing any managed code/classes to the unmanaged application). I have performed the following tasks: On the DLL:
|
| Memory allocation performance problems vs .net | 23 Nov 2005 08:36 GMT | 3 |
We have been trying to upgrade all our C++ projects from VC6 to VS .Net2003 for a while (before VS 2005 arrived), and seem to be stuck now because of the performance degradation seen for the same code when compiled by the new compiler compared to being compiled by VC 6 compiler.
|
| Closing via Console generates non-zero exit code | 23 Nov 2005 02:22 GMT | 1 |
I have a C++ Console application being written using VS C++.NET 2005 Express. It never crashes and seems to be working just fine. However, when I close the application via the Console 'X' exit button in upper right corner of its dialog box I get the following exit code:
|
| Can I use both C++ and C# Express versions of 2005 at the same time? | 22 Nov 2005 23:32 GMT | 8 |
I have been using VS C++.NET 2005 Express as our company waits for the MSDN full version to arrive. It is a pretty amazing free tool! My question is I'd like to also do some VS C#.NET stuff too. So I'd like to download VS C#.NET 2005 Express while we are waiting as well. Problem ...
|
| Compiler bug in Visual C++ 2005 | 22 Nov 2005 21:53 GMT | 2 |
there is a bug in the compiler of Visual C++ 2005/14.00.50727.42 (also 13.10.3077). This code compiles but must not compile: #include <string>
|
| Stack overflow: Correct way to define a pointer to a function? | 22 Nov 2005 18:36 GMT | 9 |
Under MC++, what is the right way to define a (typedef'd) pointer to a static function? When I call a function through a pointer I get a stack overflow. For those having the same problem, I worked around the problem by
|
| Splitting double into integers | 22 Nov 2005 16:35 GMT | 3 |
How can I split Double into two integers like the following example : 2.34 -> 2 and 34 (I dont want the modf() result that gives 2 and 0.34) Hugo
|
| [VC 2k5] Q:Copying From unmanaged pointer into managed arrary, How? | 22 Nov 2005 13:52 GMT | 3 |
Got a quick question, I have an app that I'm compiling with /clr and I have a native function that passes in a pointer, and I need to copy from that unmanaged memory into a managed Byte array but I can't quite figure out how to properly cast everything, here's what I have right ...
|