| Thread | Last Post | Replies |
|
| Question about sizeof a class. | 17 May 2006 07:49 GMT | 19 |
lets say I have the following class: class AAA{}; if I do: sizeof(AAA)
|
| Assembly manifest for a plain old Win32 | 17 May 2006 07:31 GMT | 1 |
I have a C#.exe with a Win32.dll (no com is involved). I would like to make an assembly manifest for the Win32.dll, in order to use ClickOnce. I can not figure out how to use mt.exe, or mage.exe, or set up VS IDE
|
| ODBC Bulk Insert | 17 May 2006 04:33 GMT | 3 |
Am looking for an ODBC SQLBulkOperations wrapper for VC++; in particular I need to perform bulk Insert operations. Anyone know where I can find this? Thanks
|
| Managed C++ and VC6++ | 17 May 2006 02:43 GMT | 2 |
Hello NG, Is managed C++ of same power as regular C++. Also what is the respect level for managed C++ in compare to regular C++. Cheers, Po
|
| Hosting the CLR and IJW | 16 May 2006 23:32 GMT | 2 |
We have a native VC++ server application I'm planning on adding support to allow our customers to write synchronous event handlers using .NET. From my research it appears hosting the CLR using the new hosting interface will give me the most flexablitity in configuring and ...
|
| [MC++] NullReferenceException with value structs? | 16 May 2006 20:18 GMT | 3 |
I have been staring at this code and I cannot see what is wrong with it. I am getting a NullReferenceException when trying to pass a value struct to a method. This exception only happens in Release mode; Debug mode runs fine. When I use the Debugger on Release mode, the debugger ...
|
| [MC++] Internal Compiler Error with /Ox | 16 May 2006 14:58 GMT | 1 |
I am not sure if this is related to my previous thread ("NullReferenceException with value struct") so I am starting a new thread. I saw in
|
| May build, but won't compile.. | 16 May 2006 13:51 GMT | 1 |
//These codes will build but wil not compile. I hope someone would know why; and tell me. //I got the below error message during compile time #include "stdafx.h"
|
| Best way to store exception strings | 16 May 2006 13:44 GMT | 2 |
I handle errors in my code by using my own exception class that takes a number as argument to the constructor, and that number puts a string into the exception class. The user can then catch the class and display the string to the user.
|
| VS2005 list template with own types | 15 May 2006 18:29 GMT | 2 |
I am trying to migrate a VS2003 VC++ Solution to VS2005. I found a problem with the list template ! I declared my list like this: class MyOwnTypeList : public list<MyOwnType::Ptr>
|
| PDF preview in a c++ application | 15 May 2006 18:24 GMT | 4 |
In my C++ application (no MFC) I have a dialog and like to show a PDF preview in this dialog. How can I do that? Thanks
|
| Sinking Managed Events in VC7 | 15 May 2006 17:52 GMT | 6 |
I have a C# Class Lib that exposes a public events, methods and properties. I am referencing this ClassLib from an MFC DIalog app that is compiled with /CLR. I use gcroot<T> to create and connect and call the method in the C# Class Lib w/o problems. However, I am having a
|
| Mixing C with C++ | 15 May 2006 17:16 GMT | 4 |
Can an MFC C++ (VS 2005) project have .c files that contain C style functions? Can these C functions use the classes created in the project? RML
|
| Stopping A File From Being Deleted | 15 May 2006 16:27 GMT | 2 |
Hey There, Is there a way to write code that will protect a file such that when a user tries to delete it, it will be protected with the "Cannot delete 'xyz': Access is denied. Make sure the disk is not full or
|
| Throwing Nice Exceptions | 15 May 2006 13:41 GMT | 3 |
I have a point in my code where I can get an exception if the network is not available. This exception is kind of ugly for the user to see. I'd like to catch and throw new exception that contains only my error string and an OK button. If I say throw new System.Exception("The ...
|