| Thread | Last Post | Replies |
|
| Execution of batch file from VC++(IDE) | 25 May 2004 22:11 GMT | 3 |
I am having one batch file and using this I can start my Server. It will execute all exes while starting. Now my question is how to debug my exe using this batch file?? Is it possible to execute this batch file from my prject debug session....
|
| Automatic Comments | 25 May 2004 19:31 GMT | 1 |
What do I need to do to include comments in my source code like the following automatically whenever new source files are created? /* Title : Hello World * * Created: Jan 01, 2002 *
|
| Is auto_ptr allowed in managed C++ class | 25 May 2004 17:31 GMT | 6 |
Is auto_ptr allowed in managed C++ class? I have my doubts because of the following example: #include "stdafx.h" #include <iostream>
|
| Using multidimensional array in managed C++ | 25 May 2004 15:21 GMT | 4 |
I have a line of C# code like following, and trying to rewrite it in managed C++, but failed after many try. C# code int[][] params = new int[length][] C++ code I tried, but could not get it to compile
|
| gcroot and weak references | 25 May 2004 13:55 GMT | 2 |
I see that GCHandle can encapsulate a weak reference, but gcroot appears to only allow 'normal' GCHandles. Is this correct or is there something I've missed? Ta,
|
| how can I acess XML file in Managed C++ application | 25 May 2004 09:40 GMT | 1 |
I wanna write an application using xml technology with MS.NET2003 VC++.NET,but I don't know how to add xml functionality to my application, So anybody can offer same artical or snipped codes? Thank for your the advanced.
|
| Strange error returned by 'PostThreadMessage'... | 25 May 2004 01:12 GMT | 1 |
I have encountered a strange problem: while using PostThreadMessage to communicate between threads of different processes, PostThreadMessage returns "The message can be used only with synchronous operations" (1159), I didn't find any documentation discussing this error in details ...
|
| Bandwidth Management... | 24 May 2004 20:41 GMT | 6 |
I want to write an application that will allow an end user to perform large downloads on a network but to manually select the megabits per second/hour for the transfer. How would I go about doing this? I want to support XP/2000 for sure but 98/ME would be nice to bag as well. If ...
|
| Strange DLL behavior | 24 May 2004 19:50 GMT | 1 |
Has anyone seen a problem like this? I have a DLL module, statically linked into an executable. When running small testcases, everything works fine -- the executable is able to call functions in the DLL. But then when a very
|
| SDI project - Problem with pointer in Release Mode. | 24 May 2004 18:56 GMT | 2 |
I have an SDI document that runs fine in Debug Mode but crashes in Release Mode. I have set up my project so I can debug in Release Mode. The project has a tab view Here is what is happening OnInitDialog calls this // parent is Tab Control, grandparent is Tab Vie
|
| Downgrade VC++.NET 2003 Deluxe Learning Edition | 24 May 2004 11:31 GMT | 1 |
Does the liscense for the VC++.Net 2003 allow the user to purchase a downgrade to VC++.NET 2002? DO I need to buy a standard version of VC++.NET to downgrade? I need to get VC++ 2002, but I can't find it locally. Downgrading is an option, but if the DLE licesnse doen't allow me ...
|
| Static variable being constructed twice. | 23 May 2004 15:10 GMT | 2 |
I am using the following code in a header, in a mixed C++ program: class C { public: C& I() {
|
| internet explorer no longer launches from my app - please help! | 22 May 2004 18:31 GMT | 3 |
before installing the latest security updates to windows xp, i was, within my app, able to launch internet explorer to allow users to access my web site. now it only works if ie is already launched. if ie isn't launched i get an error message: Problem with shortcut - Unable ...
|
| lstrlen and strlen | 22 May 2004 16:52 GMT | 1 |
I noticed that the lstrlen is *much* slower than strlen function. Why is it so and does that mean i should never use the lstrlen, and if not than why is it there anyway? Regards,
|
| Mixed mode C++ obfuscators | 22 May 2004 07:26 GMT | 1 |
Anyone know of any software that'll obfuscate a managed/unmanaged application? Name mangling would probably be enough. Cheers, steve
|