| Thread | Last Post | Replies |
|
| Interoperability dilema | 24 Dec 2004 18:13 GMT | 1 |
I have a situation where I want to consume VC++ code that someone else has written. This C++ code compiles into a console app exe, and I have all of it's source code. For the record, this app listens to a comm port for a stream of proprietary data it is expecting.
|
| game programming | 24 Dec 2004 10:05 GMT | 5 |
 Signature hello If I wanted to do some game programming with C++ and openGL/directx do I need to know MFC /VCL . Can I just know C++ and bypass these extras and use
|
| debug error occured while use exit(0) statemnt on click menu | 24 Dec 2004 06:43 GMT | 1 |
I am new to vc++.net programming ,while I use exit(0) statement on button click event , it is OK, but when I use exit(0) statement on menu click event, there will be a debug error,could anybody tell
|
| How to add a menu? | 24 Dec 2004 06:41 GMT | 1 |
I've created a MFC C++ dialog application... I've created a menu but can't seem to remember how to add the menu to the dialog. Help? TIA.
|
| class pointers | 24 Dec 2004 06:39 GMT | 1 |
 Signature hello I am a little rustry with C++, when you declare a class method with a pointer eg...unsigned char *CTexture::LoadBitmapFile(char *fi....
|
| Fast linked list | 24 Dec 2004 04:16 GMT | 14 |
for my current application, I need a linked list in which I can access and walk through at highest speed possible - adding/deleting/inserting elements can be as slow as necessary. Now, which template out of the C/C++ standard library should I use for this - std::list? Or is there ...
|
| [newbie] _lfind syntax problem | 23 Dec 2004 20:35 GMT | 2 |
Hi again, this time, I want to do some binary searching. Therefore I have declared the following: BYTE *buffer; //holds pointer to data to search in
|
| General questions | 23 Dec 2004 09:53 GMT | 1 |
Hi again, I was just wondering: My current project consists of two Dlls - one grabs lots of data out of e.g. files and passes it sequentially two a second Dll which handles the data (e.g. searches for specific binary patterns).
|
| Collections in C++ | 22 Dec 2004 23:46 GMT | 2 |
 Signature hello In Visual Basic you can keep track of Objects of Classes with Collections. I believe this is from MV C++.
|
| How to make OLE Automation Server exit right away after registrati | 22 Dec 2004 22:08 GMT | 1 |
I am creating the setup for the .NET project. The project contains several OLE Automation Servers (.exe) I am having troubles toadd required registration information for these servers to the registry during setup. I explored
|
| [ASAP] Stack corruption | 22 Dec 2004 12:04 GMT | 14 |
I'm currently developing an application that includes an implementation of the well-known Boyer- Moore algorithm. For this, I use the implementation of Thierry Lecrq from http://www-igm.univ-mlv.fr/~lecroq/string/node14.html. But unfortunately, this source code (see below) ...
|
| Problem in Reading string | 22 Dec 2004 12:04 GMT | 3 |
I am using VC++.NET, I have a string c:\folder1;c:\folder2;c:\folder3 I want to sepreate this string into a array of string which should contain c:\folder1
|
| UMR: Uninitialized memory read in std::_Tree_nod | 22 Dec 2004 00:45 GMT | 1 |
When I run our application under PurifyPlus, I get lots of "UMR: Uninitialized memory read" warnings, e.g. [W] UMR: Uninitialized memory read in std::_Tree_nod<class std::_Tmap_traits<class std::basic_string<char,struct
|
| I create a operator + declared in C# to be used in C++ | 21 Dec 2004 23:30 GMT | 3 |
I create a operator + in C# public static HistogramBuffer operator+(HistogramBuffer aHistogramBuffer1, HistogramBuffer aHistogramBuffer2) { HistogramBuffer Tmp=new HistogramBuffer(aHistogramBuffer1);
|
| Loading mixed-mode application without .NET installed | 21 Dec 2004 23:24 GMT | 7 |
We have an application which uses some mixed-mode code to expose a .NET 1.1 managed API. Only the necessary files are compiled with /clr. We want to be able to load the application without .NET present, and then just disable the API.
|