| Thread | Last Post | Replies |
|
| VC++ 2005 Beta 2: warning C4490: 'override' : incorrect use of override specifier | 28 Jul 2005 13:51 GMT | 2 |
After I converted my .net code to the new VC2005 syntax I started to get C4490 on my ExpandableObjectConverter subclass overrides. The GetProperties method is no longer called by the PropertyGrid when I use my subclass as a type converter.
|
| A Stupid Compilation err | 28 Jul 2005 10:44 GMT | 1 |
I never practiced C++ development in VC++.net before. (only Unix) what does the error: d:\C++\UMath\UAlgebra.cpp(71): fatal error C1010: unexpected end of file while looking for precompiled header directive
|
| unmanaged pointer to managed array | 28 Jul 2005 05:46 GMT | 4 |
I am new to VS.C++ and am having a hard time when i have to share data between managed and unmanaged code. For example, I need to read binary data from a file and then call an non-CLR dll function passing the data that was read as a void*
|
| __declspec(dllexport) to return char but errors in VB6 | 27 Jul 2005 21:30 GMT | 5 |
I have a C# class that I wan't to be able to use in VB6 and VBA applications. To do this I was trying to use a mixed managed VC++ dll and export a function. Doing this I get an error "The memory could not be "read"".
|
| trying to insert my own icon into a Windows Forms application | 27 Jul 2005 19:16 GMT | 4 |
I have a Windows Forms.NET project & am modifying the GUI in Form1.h[Design] . I click the Form, go to Properties, click the Icon Property, & change it to the .ico file I want. It accepts the change & shows me a thumbnail of the image in the Properties tab, but when I compile I ...
|
| Template specialization and partial specialization | 27 Jul 2005 16:18 GMT | 4 |
Does VC 7.1 support template specialization and partial specialization ?
|
| class template | 27 Jul 2005 10:02 GMT | 5 |
I defined a class template (MyClass) and some member variables and functions, as following: template<class T1, class T2> class MyClass
|
| Wrapper for unmanaged virtual methods probs | 27 Jul 2005 08:21 GMT | 7 |
I noticed an unexplained (for me) behaviour while wrapping unmanaged virtual methods. This is the test situation: An unmanaged class has four methods defined DoIt1 .. DoIt4. Each method just
|
| [!! RANT !!] This is a hack at best (C4251) | 26 Jul 2005 19:26 GMT | 7 |
I cannot believe how convoluted it is to export function templates and class templates from a shared library (or DLL as it is called in the Windoze world). Micro$oft support for STL and standards in general is absolutely
|
| Debugging Unmanaged DLL With C# GUI .exe From VCPP 2003 Standard | 26 Jul 2005 12:42 GMT | 3 |
I googled and found a half-dozen good threads on debugging C# / VCPP on a machine with both tools installed. But my co-worker and I haven't figured out how she can debug her C++ code on her computer when her DLL is called from my C# GUI .exe program. I have the full MSDN ...
|
| Question about proper garbage collection | 26 Jul 2005 09:03 GMT | 2 |
I'm not quite sure if all objects in my code are released properly by the garbage collector, because under some circumstances (I didn't figure them out yet) I encounter sometimes a System.OutOfMemoryException.
|
| Storing my own key in map | 26 Jul 2005 02:10 GMT | 4 |
I want to have my own class as a key in the STL map. Can anyone tell me what operators i need to override?? I think its the < operator but I think I may be missing something else
|
| Using C types with garbage collection | 26 Jul 2005 02:08 GMT | 1 |
Is it possible to use "normal" C types with garbage collection? Here's the function I'd like to write, but not have to worry about deallocation: char* ConvertStringToChar(String* pString) {
|
| DSWebCamCap | 26 Jul 2005 00:29 GMT | 1 |
I have bought the book "Programming Microsoft DirectShow for digital video and television" and I'm trying to compile and link the DSWebCamCap example for my web cam. However, it fails trying to link - error: it can't find C:/Program/microsoft.obj. What is microsoft.obj, how is it ...
|
| Accessesing GUI from different thread | 25 Jul 2005 17:11 GMT | 3 |
Whats the best way to access .net GUI classes from a spawned thread? Is this even advisable, or is it a sign that the design is wrong? Any input, links, etc., would be helpful. Thanks! Steve
|