| Thread | Last Post | Replies |
|
| source code for %e, %f and %g? | 29 Nov 2005 03:42 GMT | 7 |
I can find source code in output.c for all the format specifications except for the workings of %e, %f and %g (and also %E and %G). Where is the source code for these functions? If it is not included, does anyone know why not?
|
| Iheritance | 29 Nov 2005 03:38 GMT | 5 |
I have an iherited child class in which I would like to have a variable which uses the base(parent) class. Something like this: class Child : public Base {
|
| Crash on exiting managed MFC application | 28 Nov 2005 19:26 GMT | 5 |
I have an MFC based application which uses remoting using VS05. On exiting the application, I intermittently get a crash at line 195 in dllmodul.cpp (AFX_MANAGE_STATE(&afxModuleState);) The exception I see in the IDE is "Unhandled exception at 0x7c81eb33 in
|
| Saving/Loading a class instance to file | 28 Nov 2005 17:49 GMT | 3 |
Trying to save/load a class instance to a file is tough. The reason is because there is no way to preserve its type other than by conventon. For eample, one can save all the states of the members of a class instance to a file. But when loading it up the program can only read in ...
|
| SCL streams and .NET FX | 28 Nov 2005 15:54 GMT | 4 |
Someone had suggested from an unmanaged application i can use SCL streams to save data and read this same data into a managed application using .NET FX. Can you tell me what SCL streams are exactly?
|
| VS.NET 2003: Where is class ios_base defined?! | 28 Nov 2005 09:01 GMT | 3 |
After including sstream the compiler reports hundreds of errors. They are all caused by a missing ios_base definition. When I search for ios_base in the installation directory of VS.NET 2003 I find only seven files with the .cpp ending. So where is ios_base defined?!
|
| Pinning a managed object that is being used for a unmanged callback | 28 Nov 2005 00:04 GMT | 5 |
Newbie question here. I have a VS.NET 2003 MC++ (not C++/cli) project where I have a managed class reference in a unmanaged class...simple enough. To keep things short I am for the most part attempting to do what is this article by Nish:
|
| Panel Painting ghost | 27 Nov 2005 15:26 GMT | 2 |
When the application I'm working on is run it creates a panel with a Paint event customized to draw primitives (circles, rectangles, etc.), places the panel on a form, and then launches the form. The weird part is, the panel, in the instant it becomes visible, seems to
|
| CTabCtrl FONT | 26 Nov 2005 17:58 GMT | 2 |
Am trying to change the font of a CTabCtrl I have in my Main Frame Window (not a Dialog Box). Since CTabCtrl is based in CWnd, I figured that SetFont() should work. No luck. And there are no CTabCtrl member functions specifically for
|
| using pin_ptr with a whole pointer | 26 Nov 2005 16:10 GMT | 2 |
I could not get the following code to compile: public ref class wrapper { void Read(int^ mpLen)
|
| std::map<std::string, std::string> produces complie errors Managed C++ Class Library | 26 Nov 2005 00:02 GMT | 1 |
I having having oodles of trouble using the std lib in my MC++ (VS.NET 2003) Class library. I figured out a simple sample to reproduce the errors I am having. Create a MC++ (VS.NET 2003) class library and type in the following code below:
|
| gcroot use and clean up? | 25 Nov 2005 23:46 GMT | 2 |
Im using MC++ VS.NET 2003 and am quite confused with with gcroot template and its use. The issue I am confused about is the need to (or not) delete a pointer to a managed object that you have created using gcroot. For example(from Managed VC++ 2003 Step by Step by Microsoft
|
| "object reference not set to an instance of an object" | 25 Nov 2005 15:13 GMT | 1 |
I'm trying to add an object to a checked listbox using VC++2005 Express. I tries adding a managed String (String ^) and objects that implement their own version of the ToString() method. I always get the same error message: "object reference not set to an instance of an object". ...
|
| Generate Interface | 24 Nov 2005 17:59 GMT | 1 |
I'm trying to implement an interface. I import the reference of the COM library and I set up my class like namespace testing {
|
| Error upgrading from VC7.1 to VC8 C2039: 'vt' : is not a member of 'tagVARIANT' | 24 Nov 2005 13:53 GMT | 3 |
Hey everyone. I'm just trying out some of our code to see if it is even possible to think about moving to VC8. Apart from a few minor problems in our stuff (to do with wrong for loop
|