| Thread | Last Post | Replies |
|
| WIN32 Windows Application Outputting to Command Prompt as if a Console Program - How? | 22 Jun 2007 03:26 GMT | 4 |
I am writting a windows application that I want to be able to act as if it where a Console application in certain circumstances, such as error logging. Whilst I have nearly got it, it doesn't seem to write to the screen in
|
| Using Additional Library Directories & Additional Dependencies | 22 Jun 2007 00:08 GMT | 6 |
I am using Visual Studio-2003. I created a project to build my library. Since I am using third party libraries as well, I have specified those additional library dependencies in project as "Additional Dependencies" under Linker-Input options. Since those libraries are also in ...
|
| Checking the type of a up casted class | 22 Jun 2007 00:04 GMT | 1 |
Hi, I want to check the type of a derived unmanaged class, upcasted to it's base class in CLI. Basically, I have several c++ classes that derive from a single abstract base class. I'm passing the base class in, and I want to check the type, and cast it later. Please advise.
|
| Using an MC++ abstract base class in C# | 21 Jun 2007 18:58 GMT | 4 |
I have an abstract base class defined in an MC++ class library. I then create a descendent class in a C# class library. This seems to work OK with the exception of one of the abstract member functions/pure virtual function that uses a passed in pointer to a long.
|
| How can I choose the VC Runtime Library | 21 Jun 2007 12:30 GMT | 1 |
I'm using Visual C++ 2005 to build a lib. I found that there were 4 runtime libraries in the VC2005, /MD, /MT, / MDd, /MTd. Which one should I choose to ensure that my library can be used by all the other /MD or /MT programs?
|
| CLI and calling the parent contructor | 21 Jun 2007 01:17 GMT | 1 |
What's the syntax for calling a parent constructor in CLI?
|
| Synchronized queue? | 20 Jun 2007 22:39 GMT | 1 |
I'm porting an application from a Unix like system to Windows. I'm looking for a simple queue with FIFO characteristics which will cause the calling thread to suspend if there is no data on the queue, or return after a timeout.
|
| VC6 -> VC8 CComModule | 18 Jun 2007 18:40 GMT | 3 |
I'm porting one of the dll from vc6 to vc8 and I have one problema about CComModule. My code use in stdafx.h: extern CComModule _Module
|
| Pass CString and byte array from native C++ to managed C++ | 18 Jun 2007 18:08 GMT | 4 |
I have a scenario where my CPP project is not compiled with CLR support, but some of the CPP files have the /clr option set. In file1.cpp, the /clr switch is not set. In file2.cpp, the /clr switch is set. file2.h is the header for file2.cpp, and this header is included in ...
|
| System::ServiceModel problem | 17 Jun 2007 10:42 GMT | 3 |
when i try to compile my code with 'using namespace System::ServiceModel' i get: error C2039: 'ServiceModel' : is not a member of 'System' i've installed WCF and WPF extensions for Visual Studio 2005 and after
|
| Stepping over operator new? | 16 Jun 2007 13:16 GMT | 6 |
Using VS2005, I am trying to disable stepping into the operator new calls. What NoStepInto entry should I put into the registry? I tried "operator new=NoStepInto" but it does not seem to be working.
|
| C# calling simple C++/CLI library deadlock | 16 Jun 2007 12:10 GMT | 2 |
We're working in VS 2005, Team edition, if it makes any difference at all (should be up-to-date and all that, but could not guarantee it is 100%). We've implemented a simple generic wrapper parser under C++/CLI. It's
|
| Position of mouse click on PictureBox image | 15 Jun 2007 22:23 GMT | 1 |
I have an image displayed in a PictureBox and the displayed image is resized and centred. When I click on the image, I can get the coordinates relative to the PictureBox but I would like the coordinates to be relative to the image. I've tried using PointToClient but this gives me ...
|
| Get Text from ListView Control - Managed C++ NET | 15 Jun 2007 18:32 GMT | 7 |
I've searched the web and MSDN but couldn't find adequate information on retrieving the text of a subitem of a listviewitem. What I want to do is simple. I have a listview control with 2 columns and a large number of listviewitems.
|
| importing a tlb in Visual Studio 2005 | 15 Jun 2007 17:40 GMT | 4 |
I am trying to import a tlb from a COM server(exe) I wrote with the following statement: #import "C:\\em2\\EM\\src\\core\\UMOSEFax\\Debug\\UMOSEFax.tlb" no_namespace auto_search
|