First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13
Where do you want to go tomorrow?
Dear users of msnews.microsoft.com, There are rumors that Microsoft plans to shut down this nntp server. See this for example: http://news.cnet.com/8301-13860_3-20004109-56.html Any thoughts on where we can migrate from here - besides of the web-based MSDN forums?. To Google groups, maybe? Regards, --... 15 May 2010 06:09
Microsoft Responds to the Evolution of Online Communities
Date 5/4/2010 Starting in early summer 2010, Microsoft will begin progressively closing down the Microsoft public newsgroups to enrich conversations in the rapidly-growing forum platform. This decision is in response to worldwide market trends and evolving customer needs. Microsoft continues to invest in forums t... 5 May 2010 01:44
Visual C++ 2010
I use a very old version of MS Visual C++ (6.0), and I get many replies to my queries telling me I should use a more up-to-date compiler. I see that the latest MicroSoft Express product is 2010, and it seems it has many features that I probably won't ever get around to using at my age. For example, "suppor... 6 May 2010 19:52
Can auto_ptr<> be used with void and malloc()/free()
Hi, I need to allocate a variable size struct using malloc() and then free it using free(). Is there a way I could wrap a pointer returned from malloc() in auto_ptr<>? I've used auto_ptr<> with objects of struct/class but only when they were allocated using new() operator. AFAIK, it is generally not safe ... 18 May 2010 08:10
Reversing 2nd order deep std::vector
Dear all, std::vector<x> finalvector; std::vector<x> x1; std::vector<std::vector<x>> x2; for (...) { for (...) { x1.push_back(data); } x2.push_back(x1); } std::vector<std::vector<x>>::reverse_iterator it; for (it = x2.rbegin(); it != x2.end(); it++) { finalvector.push_back(**it);... 2 May 2010 00:11
Dynamic Allocation of Structure Array
I'm trying to declare and define a variable array - one which I intend to populate, sort and access via a binary search. My problem is that I cannot seem to convert scalar type dynamic allocation to that of a structure I've created. Here's my structure: struct dbeStruct { int bibNumber; char... 2 May 2010 00:11
initialize the pointer structure
Hi, I have ATL project in VS2008. I'm trying to initialize the structure as below in the header file(test.h) #pragma once #include "resource.h" // main symbols #include <atlhost.h> typedef struct{ int a; int b; }TestStructure; class CTestStructureDialog : public CAxDialogImpl<CTestStructureD... 30 Apr 2010 07:18
Class instance internal destruction sequence?
Hi there, A class usually has non-static member method(s). When an instance of such class gets destroyed, is its non-static member method destroyed before its destructor is called? The reason I raised this question is that I faced the following problem in debug build: I have a class which has a member data of... 29 Apr 2010 22:35
[ANN] CodeSynthesis XSD 3.3.0 released
Hi, I am pleased to announce the availability of CodeSynthesis XSD 3.3.0. CodeSynthesis XSD is an open-source (GPL2 + proprietary license), cross- platform W3C XML Schema to C++ data binding compiler. Provided with a schema, it generates C++ classes that represent the given vocabulary as well as parsing and se... 28 Apr 2010 12:54
automatic refreshing of data in vb6.0
Hi if two users are working simultaneously in a same form,How to refresh the data automatically which was added by the other user. I herad that through windows API 'Postmessage' and 'registerdwindowmessgae' we can handle this. Please give some examples runcyclexcsk wrote: Scott - many thanks, I will ... 28 Apr 2010 14:02
First  |  Prev |  Next  |  Last
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13