| Thread | Last Post | Replies |
|
| i can't define a string - help | 11 Dec 2006 00:00 GMT | 3 |
#include <string> #include <iostream> int main(){ string s= "Application";
|
| Getting to windows event logger | 10 Dec 2006 23:15 GMT | 9 |
Here is a code I found that notifies if an event has been generated. I still can't find anything that would actually grab the event and export it a file which is what I am trying to do #include <windows.h>
|
| an unmanaged type cannot derive from a managed type | 09 Dec 2006 21:48 GMT | 2 |
I took a c++ 6.0 project and converted it to c++ .net 2005 project. I want to make a web service out of it. One of the new files I created was a cpp where I have the webmethod pointing to a function in the previously 6.0 code and I get the error noted below. What I don't understand ...
|
| PostMessage() error | 09 Dec 2006 09:27 GMT | 21 |
PostMessage() function returns ERROR_NOT_ENOUGH_QUOTA after running in a loop for 700 times, but the disk space and memory are still big enough. any suggestion to resolve this problem? thanks.
|
| how do I demangle C++ symbol names in libs produced by Visual Studio .NET 2003 please? | 08 Dec 2006 16:06 GMT | 1 |
I am getting a missing symbol from my application library but it looks to me like the symbol must be there (judging from the source code). So I would like to list the symbols in the ".lib", demangled. How do I do that please?
|
| task manager, app doesn't unload | 08 Dec 2006 15:08 GMT | 4 |
on my developing system, when my app exits, it always gets removed withing a second from the task manager. on my clients machine, the app exits but stays indefinitely in the task manager. i tried every which way to kill the process, i did all of the following to
|
| File Stream problem .... | 07 Dec 2006 20:27 GMT | 1 |
I am trying to use filestreams (ifstream / ofstream) to copy a text file line by line except except the last few lines that meet certain conditions. Each line is of variable length.
|
| sizeof type pointed to by pointer? | 07 Dec 2006 20:25 GMT | 4 |
Doing this will work: double *dPointer; result = sizeof(*dPointer); if I want the size (in this case 8) of the type that the pointer is pointing
|
| Mixing Old/New Syntax? | 07 Dec 2006 08:49 GMT | 5 |
We have developed a big library using managed C++. The project started with .NET 1.0 and has been ported to .NET 1.1. Today we ship the library compiled for .NET 1.1 and 2.0. At the moment the whole code uses the "old" managed C++ syntax.
|
| How to invoke a managed function from a unmanaged thread? | 06 Dec 2006 12:16 GMT | 1 |
i'v been coding with c++/cli and i hit a terrible problem. i created a class library project and add a ref class(abstract) with some static member functions like: ////////////// CrawlerWrapper.h
|
| Visual C++ 2005 Projects on Network Drives | 06 Dec 2006 12:12 GMT | 1 |
I am teaching Visual C++ 2005 in a classroom where the students don't have administrator rights, and where they only can save their projects on a network drive. If I create a new project on a network drive, the project can't be
|
| New to C# | 06 Dec 2006 08:51 GMT | 1 |
Well I am somewhat new to programming in c#. And I am having a hard time figuring out how to open up a 2nd form within my program. Here is what I am wanting to do: When I click the "about" option from the menuStrip within my program, I want it to open up a form that I created, and ...
|
| Multiple Threads, Race Conditions, and Concurrent Processing | 05 Dec 2006 22:57 GMT | 4 |
I've written to this group a couple times and would like to initially start by thanking those who reply to the posts. I seem to be having some issues that are out of my understanding at the moment and hopefully someone knowledgeable will be able to guide me the right way.
|
| Managed C++ to C# | 05 Dec 2006 21:51 GMT | 3 |
What Method signature do you use in Managed C++ that will appear as the following in C#-- F1(out int Int1){} I have tried--
|
| how to view generic list items in watch window | 05 Dec 2006 17:02 GMT | 1 |
Is there a way that I can view the items/elements of a generic list in VS2005? For example, if I use STL std::vector, I am able to use the watch window to see each element in this container. But this does not work for the generic List collections. Currently, when I click on ...
|