Sign in
Home
Library
Learn
Samples
Downloads
Support
Community
Forums
Blogs
from ideas to solutions
MSDN Blog Leaderboards
Most Active Contributors
Most Active Commentators
MSDN Blogs
The Latest Blog Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
James @ MS
Customer Experience Program in Whidbey
Posted
over 9 years ago
by
jameslau-MS
4
Comments
Hello World! This is my first blog on MSDN - so I am going to take this opportunity to talk about the new Customer Experience Program in Whidbey. Internally, the Customer Experience Program is known as SQM (Software Quality Metrics). It is basically...
This is my old blog
I was afraid from WMI
Posted
over 9 years ago
by
yosit
2
Comments
Until I found Microsoft (R) Management Strongly Typed Class Generator - MgmtClassGen.exe Microsoft (R) Management Strongly Typed Class Generator Version 1.1.4322.573 Copyright c Microsoft Corporation 1998-2002. All rights reserved. MgmtClassGen <WMIClass>...
Brad Abrams
Croatia WinDays gets a great interop speaker...
Posted
over 9 years ago
by
BradA
0
Comments
While we are on the subject on interop , I noticed that Sonja Keserovic ( PDC talk) will be heading to the WinDays conference on the Adriatic coast! If you are in the area, it is totally worth checking out her talk. She may even do it in Croatian....
Larry Osterman's WebLog
It's only temporary
Posted
over 9 years ago
by
Larry Osterman [MSFT]
9
Comments
NT has a whole lot of really cool features that aren’t always obvious without REALLY looking closely at the documentation. One of my favorite is what I call “temporary” temporary files. A “temporary” temporary file is one whose storage is never...
Betsy Aoki's WebLog
What makes it "community" ?
Posted
over 9 years ago
by
Betsy
13
Comments
I've got two thoughts - like plates spinning on sticks - about community right now, and forgive me if I let either of them fly off like frisbees as I cogitate on this. I was recently asked to give input on community - not in my usual “Yee-haw...
Brad Abrams
Gotta check out PInvoke.net
Posted
over 9 years ago
by
BradA
8
Comments
Adam Nathan spent sometime over the weekend putting up this little site pinvoke.net . It is a very cool Wiki for Win32 PInvoke signatures… I can’t wait to see what the community does with this! Cool -- Charlie Kindel picked it up as...
Fabulous Adventures In Coding
nameditemlist.h
Posted
over 9 years ago
by
Eric Lippert
0
Comments
#ifndef NAMEDITEMLIST_H // { #define NAMEDITEMLIST_H class NamedItemList { private: class NamedItem { private: NamedItem(); public: ~NamedItem(); static HRESULT Create(const WCHAR * pszName, NamedItem * * ppNamedItem); NamedItem * m_pNext;...
Fabulous Adventures In Coding
nameditemlist.cpp
Posted
over 9 years ago
by
Eric Lippert
2
Comments
#include "headers.h" NamedItemList::NamedItemList() { this->m_cBuckets = 0; this->m_Buckets = NULL; this->m_pMutex = NULL; } NamedItemList::~NamedItemList() { this->Clear(); if (NULL != this->m_Buckets) delete[] this->m_Buckets;...
Fabulous Adventures In Coding
mutex.cpp
Posted
over 9 years ago
by
Eric Lippert
0
Comments
#include "headers.h" Mutex::Mutex() { m_fInitialized = FALSE; } HRESULT Mutex::Create(Mutex * * ppMutex) { AssertOutPtr(ppMutex); HRESULT hr; BOOL fSuccess; DWORD error; Mutex * pMutex = NULL; pMutex = new Mutex(); if (NULL == pMutex) { hr...
Fabulous Adventures In Coding
mutex.h
Posted
over 9 years ago
by
Eric Lippert
0
Comments
#ifndef MUTEX_H // { #define MUTEX_H class Mutex { private: CRITICAL_SECTION m_criticalsection; BOOL m_fInitialized; Mutex(); public: static HRESULT Create(Mutex * * ppMutex); ~Mutex(); void Enter(void); void Leave(void); }; #endif ...
Mike Swanson's Blog
User Interface Process (UIP) Application Block - Version 2
Posted
over 9 years ago
by
Michael Swanson
2
Comments
The User Interface Process (UIP) Application Block - Version 2 was recently released to MSDN on April 9 th . UIP v2 is the next version of one of the most popular application blocks created by our Patterns & Practices group . This block is a reusable...
Fabulous Adventures In Coding
hash.h
Posted
over 9 years ago
by
Eric Lippert
0
Comments
#ifndef HASH_H // { #define HASH_H extern ULONG ComputeHash(const WCHAR * psz); #endif // HASH_H }
Page 31099 of 31,860 (382,309 items)
«
31097
31098
31099
31100
31101
»