| Thread | Last Post | Replies |
|
| how to fix error C2872: 'IXMLDOMDocumentPtr' : ambiguous symbol | 08 Aug 2007 10:00 GMT | 1 |
I have a project that compile without error on VC 6 (XP Pro service pack 2 ) but when i port to VC 8 (2005) then have error during compile as below: //-------------------------------------------------------------------------------------- Compiling...
|
| IPC: Shared Files vs. Named Pipes | 07 Aug 2007 23:39 GMT | 2 |
I am making an application in which if the second instance of the same application is launched, it checks its command-line arguments and passes them to the already running instance. I have been told by someone that using named pipes is one of the most commonly used ways
|
| Enable/Disable USB drive | 07 Aug 2007 18:37 GMT | 1 |
I want to Enable/Disable USB drive programatically. I dont to use devcon.exe. If anyone knows some API please tell me. Thanks in advance.
|
| intellisense in visual C++ .Net 2005 | 07 Aug 2007 18:31 GMT | 6 |
I am using visual C++ .NET 2005 for programming in C++. despite the fact that my project contains a VC++ intellisense database, intellisense does not work. What could go wrong. IN the same framework, if I program in C# intellisense works just fine.
|
| HELP!! Library for deleting file not there! | 07 Aug 2007 16:47 GMT | 4 |
I'm developing a Win32 Console Application for a Smart Device (MotoQ). All i need to do is delete a file with a known name and path. I'm under the impression that I have to use File::Delete( path ) based on what MSDN is telling me. Thus I need to include mscorlib.dll ... I
|
| Does VC 2003 support #region and #endregion? | 07 Aug 2007 14:38 GMT | 2 |
It seems I cannot use #region and #endregion to hide those auto generated windows form control declarations. They are available in VC# 2003 though. Is it true that VC 2003 doesn't support #region and #endregion?
|
| STL in vs 2005 | 07 Aug 2007 13:17 GMT | 3 |
I am trying to use vector in C++ visual studio.net 2005. I do #include <vector>, but the compiler does not seem to recognize the corresponding code, when I define vector<int> my_vector
|
| error C3861: 'InitializeCriticalSectionAndSpinCount': identifier not found | 07 Aug 2007 05:06 GMT | 3 |
I have included windows.h, but it still says 'InitializeCriticalSectionAndSpinCount': identifier not found. Why? any ideas? Thanks.
|
| _vsnwprintf_s seems to be broken | 07 Aug 2007 01:58 GMT | 31 |
I think the current version of _vsnwprintf_s is broken, in ordinary Windows. I'm not completely sure yet but it looks like this breakage is worse than previously known Windows CE breakage of StringCchPrintf. For Windows CE breakage of StringCchPrintf, since the %S format died ...
|
| How to increase .Net TextBox storage for large data | 06 Aug 2007 18:24 GMT | 3 |
In the past, I was using a MFC CEdit control to display logged data (A lot of Data). The control seems to have virtually no limit. Now, I'm using a .Net TextBox. When I reach about 32768 characters it doesn't take any more data.
|
| after change an unmanagered exe to support clr.old syntax | 06 Aug 2007 18:17 GMT | 2 |
I have a project, which is an unmanaged .exe file. It runs good after install it in a machine, which has no vs.net installed. But it has .net framwork 2.0. But after we set the support clr/old syntax for this project. It compiles and runs good in a developer machine, but when we ...
|
| Unmanaged to managed callback, and GCHandle / gcroot | 06 Aug 2007 18:10 GMT | 7 |
I'm coding up an application that has a native c++ layer, asynchronously calling callback in a CLI layer. We originally did this with static inline methods in the CLI layer, but this solution only works with singleton objects. So I have to
|
| Internal specifier in C++/CLI | 06 Aug 2007 15:42 GMT | 1 |
I had one doubt about C++/CLI Can we have an internal class and/or Internal member functions in a C+ +/CLI assembly (as available in C#), if possible please let me know how do we specify the access modifiers
|
| Difference between VB full edition and Visual C ++ | 04 Aug 2007 18:21 GMT | 1 |
I am studying VB 2005 express and think, very interesting projects can be developed with it. Before I step over and buy the VB full version, can anybody tell me the difference of possibilities VB offers in comparison to Visual C ++ or tell me whare I could find more info on it?
|
| Threads in VC++ | 04 Aug 2007 17:17 GMT | 1 |
I am trying to build a multithreaded application in VC++, I have used multithreading in Java and C# but never in VC++, I have done a lot of search but for my surprise there is no built-in threading in VC++ as in Java, can anybody suugest me am easy way to deal with threads in VC++, ...
|