| Thread | Last Post | Replies |
|
| Pointer to a generic class or structure | 25 Jul 2005 16:10 GMT | 1 |
I'd like to write a Generic class that use a pointer to the generic structure. I can't do this unsafe public class PClass<S> where S : new() {
|
| Open Com port failed (multi threading) | 25 Jul 2005 14:38 GMT | 4 |
I wrote a C# program that is calling C++ legacy code to open a serial port (using CreateFile (comPort, GENERIC_READ|GENERIC_WRITE,0,NULL,OPEN_EXISTING,FILE_FLAG_OVERLAPPED,NULL)) .
|
| templates and inheritance | 25 Jul 2005 14:18 GMT | 6 |
I am writing a container class so that I can reuse my double ended list code. I have a base class CListBase that handles inserts and deletes with a member function addItem, defined as: template<class T>
|
| How to eliminate assignment operator generation warning | 25 Jul 2005 14:02 GMT | 8 |
I'm using Microsoft Development Environment 2002 Version 7.0.9466 on Windows XP Professional Service Pack 2. If I compile the following code at maximum warning level: #include <functional>
|
| Need tip about a warning message ! | 25 Jul 2005 13:09 GMT | 4 |
I would like to have a tip about this kind of warning, what should I do get rid of that warning? LINK : warning LNK4243: DLL containing objects compiled with /clr is not linked with /NOENTRY; image may not run correctly
|
| FormatMessage and va_list args | 25 Jul 2005 10:49 GMT | 4 |
I have a function that has a variable no of arguments (note! function shortened) myfunction(int someID, ...) {
|
| Calling managed function from unmanaged function in mixed mode dll | 25 Jul 2005 07:30 GMT | 1 |
i originally posted this via another portal, but after giving it time to propagate it still hasn't shown up. My apologies for the multiposting. This might be a very simple question, but i am still getting my head
|
| CDatabase error | 25 Jul 2005 03:57 GMT | 1 |
I am trying to use CDatabase class and include the class <afxdb.h>, but the following error occurs, Linking... nafxcwd.lib(afxmem.obj) : error LNK2005: "void * __cdecl operator
|
| store lots of data? | 25 Jul 2005 02:37 GMT | 4 |
quick question for anyone who can help...im trying to mak a program that will take an entered username and store a list of teams they chose from a list and save that, to be called later. does anybody kno what i should save this list as? thanks
|
| Mixing managed/unmanaged C++ callback | 23 Jul 2005 15:11 GMT | 9 |
I'm puzzled how to mix managed/unmanaged C++ in the following scenario: Unmanaged ------------ Callback listener class with method that should call an event in managed
|
| SAL annotations - how they work? | 22 Jul 2005 19:06 GMT | 6 |
How the code annotations ( __in_opt, __out, __checkReturn ... ) are supposed to work ? Are they part of the new MS C language (that's, real tokens understood by the compiler), or always #define'd as nothing and interpreted by some
|
| HEEELLLLPPPP! Breakpoints in assembler code just stopped working | 22 Jul 2005 18:57 GMT | 2 |
Can anyone please help me figure out why all of a sudden (even after many restarts of Visual Studio 2005 and reboots, etc) I am no longer able to set breakpoints in the disassembler window. I should mention that this is assembler code I generate by writing opcodes to memory, but ...
|
| Forward declaration with value class | 22 Jul 2005 17:17 GMT | 4 |
I'm trying to use forward declaration with value class but I don't succeed in compiling my (quite simple) sample code. This is my code I'm trying to compile (Visual Studio 2003) namespace managedDll
|
| Question about creating an automated data entry program | 22 Jul 2005 14:54 GMT | 1 |
I want to create a program that you setup to automatically do data entry. I need to know how to move the mouse pointer and click the mouse and stuff automatically, and how to focus and minimize windows. Do you know which objects and libraries I should be using? I've got Visual ...
|
| how to include a lib? | 22 Jul 2005 09:05 GMT | 2 |
i have two .lib files, but i dunno how to include in my compilation in vc.NET... also, is there anyone has used IBM MQ before? i dunno how to connect all its library... dunno why
|