Welcome to MSDN Blogs
Sign in
|
Join
|
Help
MCS Partner ISV
Yves Dolce
This Blog
Email
Syndication
RSS 2.0
Atom 1.0
Search
Tags
Random
Software Development
Archives
November 2009 (2)
September 2009 (4)
August 2009 (4)
May 2009 (1)
April 2009 (1)
January 2009 (1)
November 2008 (1)
October 2008 (1)
June 2008 (2)
May 2008 (1)
March 2008 (2)
January 2008 (5)
December 2007 (1)
November 2007 (1)
October 2007 (2)
September 2007 (3)
May 2007 (1)
April 2007 (1)
March 2007 (2)
February 2007 (6)
December 2006 (3)
November 2006 (7)
October 2006 (4)
September 2006 (3)
June 2006 (5)
May 2006 (1)
April 2006 (5)
March 2006 (4)
February 2006 (3)
January 2006 (3)
December 2005 (1)
November 2005 (9)
October 2005 (5)
September 2005 (5)
August 2005 (11)
July 2005 (1)
June 2005 (3)
May 2005 (7)
April 2005 (5)
March 2005 (3)
February 2005 (2)
January 2005 (2)
December 2004 (1)
November 2004 (4)
October 2004 (2)
September 2004 (2)
August 2004 (14)
July 2004 (3)
June 2004 (12)
May 2004 (6)
April 2004 (15)
March 2004 (17)
February 2004 (13)
Visual C++ Team
Stanley Lippman
Herb Sutter
Brandon Bray
Jonathan Caves
Andy Rich
Martyn Lovell
Five Testers From VC
April 2004 - Posts
Tuesday, April 20, 2004 11:15 AM
Articles from the Visual C++ Toolkit 2003 are available online
See my previous entry regarding the The Visual C++ Toolkit 2003 . The articles are: - Conformance to ISO Standards for C++ : this high level of compliance enables Visual C++ .NET 2003 to compile popular modern C++ libraries (including LOKI, BOOST, and
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Saturday, April 17, 2004 8:56 PM
Microsoft Visual C++ Toolkit 2003
All the details are on the page but here is the Q&A (as of 4/17/04) so that you can decide if you are interested to click on the link: Visual C++ Toolkit 2003 Q&A What is the Visual C++ Toolkit 2003? The Visual C++ Toolkit is a free edition of
Posted by
yvesdolc
|
13 Comments
Filed under:
Software Development
Saturday, April 17, 2004 8:50 PM
How to make a piece of managed code execute in a security restricted environment, or how to "sandbox" it
Ivan Medvedev gives a nice detailed answer on http://www.dotnetthis.com/Articles/DynamicSandboxing.htm (Check his blog !)
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Saturday, April 17, 2004 8:36 PM
Discussion of Marshal.ReleaseComObject and its dangers
David Mortenson sent this on an internal Distribution List. I'm sure you'll find it useful if you do any COM Interop: This is a good time to discuss the risks of using Marshal.ReleaseComObject. This API does indeed allow you to force the release to happen
Posted by
yvesdolc
|
6 Comments
Filed under:
Software Development
Friday, April 09, 2004 3:40 PM
Strong Name Signing with Smart Cards
I was just discussing this topic with an ISV a week ago! http://www.dotnetthis.com/Articles/SNandSmartCards.htm
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Friday, April 09, 2004 3:37 PM
Control.InvokeRequired method
I was reading the nice An Avalon Threading Story blog entry and I realized I didn't know about that method although I knew about the rest, including the Avalon mechanism. Might be time to pick up a good Windows Forms book ! (I think I'll wait for the
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Friday, April 09, 2004 1:41 PM
Digital Camera Reviews and News Digital Photography Review Forums, Glossary, FAQ
I love that site: http://www.dpreview.com/ I still own a PowerShot A10 but one day, yes, one day, I'll upgrade!
Posted by
yvesdolc
|
2 Comments
Filed under:
Random
Thursday, April 08, 2004 4:01 PM
'Whidbey's Secure CRT'
Check http://weblogs.asp.net/shawnfa/archive/2004/04/08/110097.aspx . The part I personally find most interesting is the standardization effort !
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Tuesday, April 06, 2004 5:57 PM
SQL Server documentation quality and SQL Service Broker
Next week, I'll travel to Canada to meet with a Premier ISV and talk, among other things, about SQL Service Broker. So I decided to install an internal, more up-to-date, version of the SQL Server Yukon books on-line. Well I must say that even at this
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Tuesday, April 06, 2004 12:31 PM
Application Domain FAQ
As a friend of mine asked me to explain him what an AppDomain was, I started answering his e-mail. I then thought “Let's not re-invent the wheel”, this must have been done before and in a better way than mine. Indeed: Application Domain FA
Posted by
yvesdolc
|
2 Comments
Filed under:
Software Development
Friday, April 02, 2004 2:30 PM
Command Prompt Explorer Bar
I've been using this tool for a while now, I love it and wonder why we do not provide it out of the box! From http://www.codeproject.com/csharp/CommandBar.asp : This tool extends explorer with functionality of a command prompt. Implemented as a band object
Posted by
yvesdolc
|
4 Comments
Filed under:
Random
Friday, April 02, 2004 11:13 AM
Mixing native and managed exceptions
I wrote that sample a while ago to better understand the mix of exception types: #using <mscorlib.dll> using namespace System ; __value class ValueException { public : ValueException( int i ) {} } ; __value class AnotherValueException { public :
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Thursday, April 01, 2004 10:52 PM
When declaring a parameter as a pointer to a value type
don't specify a __nogc pointer as the default (__gc) allows you to cover more scenarios... #using <mscorlib.dll> using namespace System ; __value class TheValueType { int i ; } ; __gc class TheReferenceType { public : TheValueType vt ; } ; void
Posted by
yvesdolc
|
0 Comments
Filed under:
Software Development
Thursday, April 01, 2004 10:12 PM
Two papers you want to read if you develop for the .NET Framework using C++
Producing Verifiable Components with Managed Extensions for C++ In Visual Studio .NET 2003, you can generate verifiable components built with Managed Extensions for C++. Currently, the compiler does not generate any warnings if you include nonverifiable
Posted by
yvesdolc
|
2 Comments
Filed under:
Software Development
Thursday, April 01, 2004 9:58 PM
Just saw a very interesting documentary
No comment. Frontline: Ghosts of Rwanda Investigate the social, political, and diplomatic failures that led to Rwanda's horrific genocide ten years ago.
Posted by
yvesdolc
|
0 Comments
Filed under:
Random