| Thread | Last Post | Replies |
|
| generic class wizard question | 23 Mar 2004 12:51 GMT | 1 |
Is there any reason why the 'new generic class' wizard generates: #include ".\theclass.h" instead of #include "theclass.h" ?
|
| newbie::getline + cout + cin problem | 23 Mar 2004 12:03 GMT | 1 |
I am having a problem with a simple program I have written. To start to learn how to deal with the string class in C++ I created the the following function as part of a larger exercise. string pizzaNS::getName()
|
| fatal error C1001: INTERNAL COMPILER ERROR | 23 Mar 2004 11:52 GMT | 10 |
I'm trying to move a C++ app from Visual Studio C++ 6.0 to MSDEV .NET 2003 and I get the following error. It happens a header file at a forward declaration: class CString; // <<<< here
|
| Linker errors | 23 Mar 2004 11:39 GMT | 2 |
Sorry to post this again. I didn't get any responses the previous time I posted and I really would appreciate an answer. Even if someone could just acknowledge that this is a bug and/or give me a few clues as to what factors I could change to reduce this problem.
|
| Cannot find "CTL3D32.LIB" | 23 Mar 2004 11:34 GMT | 1 |
I have a program that uses several "Ctl3d" calls and can be built with VC6. Here is part of my program: #include <ctl3d.h> // http://www.mit.edu/afs/athena/astaff/project/bugsquash/wx/include/msw/ctl3d.h BOOL CMyDialog::OnInitDialog() {
|
| Adding items to ListBox | 23 Mar 2004 11:33 GMT | 4 |
Please help me in adding Items to ListBox control on runtime. Whenever I try to add strings to items it gives me Error "error C2664: 'System::Windows::Forms::ListBox::ObjectCollection::Add' : cannot convert parameter 1 from 'std::string' to 'System::Object __gc *'
|
| Cast _TCHAR* to BSTR | 23 Mar 2004 07:08 GMT | 2 |
I'm very new to this. I have a parameter coming into the command line arguments of a console application that is defined as "_TCHAR* argv[]". I want to convert the value to a "BSTR". I've tried "BSTR _Temp = SysAllocString(argv[1])". This does not work. I know I'm missing a lot, ...
|
| Strange Linker errors | 23 Mar 2004 05:05 GMT | 2 |
I am getting some very odd linker errors when I attempt to compile my code. They are not functions that I have written, has anyone heard of them Client error LNK2001: unresolved external symbol "int __cdecl __CxxRegisterExceptionObject(void *,void *)" ...
|
| need some help on DB updating with VC++ | 23 Mar 2004 04:41 GMT | 1 |
I have a DB and I need to update the item, delete them, add etc and I am looking for some reference information, I am using SDI.
|
| Wrapping a DMA buffer in .NET... | 23 Mar 2004 02:49 GMT | 1 |
Hello all. Here's the situation. I've got a physically contiguous, non-paged buffer that I use to do DMA transfers between the host PC and a PCI device. This buffer is allocated by a device driver and mapped into the user's address space. My question is, how can I export this buffer ...
|
| unresolved external symbol "void * __cdecl operator new(unsigned int) | 23 Mar 2004 01:39 GMT | 1 |
Hi again guys This is a follow-up question. This error - error LNK2001: unresolved external symbol "void * __cdecl operator new(unsigned int)" (??2@$$FYAPAXI@Z) - seems to be a popular error and I am wondering what is causing it. I am wrapping an unmanaged class in a managed ...
|
| Migration from VC++ 6.0 | 22 Mar 2004 22:31 GMT | 3 |
I am upgrading our system from VC++ 6.0 to VC++7.0, and found some code can't be compiled, for example : template<class T> class QMemArray<T>
|
| realloc() ? | 22 Mar 2004 20:14 GMT | 1 |
does something like a realloc() for arrays exist in C# ? (like in C) or do you have to create a new array-object yourself an then copy the already existing values in the new array ? thnx
|
| Writing DLL's in Managed C++ | 22 Mar 2004 20:14 GMT | 1 |
I am currently working on a managed c++ project. I have a part of the code that is quite isolated from the rest of the project and wanted to encapsulate it in a DLL so that it could be updated independent of the executable. I am just learning how to work with DLL projects ...
|
| __property on unmanaged class | 22 Mar 2004 19:59 GMT | 5 |
I´m evaluating Visual C++ .NET and I'm trying to convert a program developed with Borland C++ Builder. In this program I use the __property keyword on the definition of my classes. Writing managed code I could easily translate the properties
|