Sign in
Yves Dolce
MCS Partner ISV
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Tags
Random
Software Development
Archive
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)
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Yves Dolce
Who am I?
Posted
over 9 years ago
by
yvesdolc
2
Comments
I'm working as a consultant for the ISV Practice of Microsoft US Partner Services. We were called Application Development Consultants before. The group was called Premier Support for Developers, then Premier Services for ISV's. Although I don't like...
Yves Dolce
Managed C++ resources I consider very useful
Posted
over 9 years ago
by
yvesdolc
2
Comments
- Microsoft Press book: Programming with Managed Extensions for Microsoft® Visual C++® .NET--Version 2003 - Visual C++ team blogs: Andy Rich , Brandon Bray , Brian Johnson , Martyn Lovell , Stan Lippman , Jonathan Caves , Herb Sutter and Five...
Yves Dolce
I love that mouse
Posted
over 9 years ago
by
yvesdolc
2
Comments
The Wireless IntelliMouse Explorer that is. I've been using a lot of Microsoft mice over the years so when I saw that Tilt Wheel technology , I thought that I would use it as much as the Scroll Wheel one: a lot! Well, it turns out I don't. But the...
Yves Dolce
Variadic parameter in MC++ Whidbey : How Could We Design Such a Thing?
Posted
over 9 years ago
by
yvesdolc
2
Comments
Thanks for that answer Stan.
Yves Dolce
A must read if you’re doing any managed C++ (I mean Thing1) development
Posted
over 9 years ago
by
yvesdolc
2
Comments
Value Type Representation Between the Original and Revised C++ Stan was kind enough to explain me what he meant by “ When you couple that with the continued requirement that non-POD native classes be pointer members within the value type,...
Yves Dolce
Is your company looking at the error reports our common customers send Microsoft?
Posted
over 9 years ago
by
yvesdolc
1
Comments
You know, the one we receive after the user clicks “Send Error Report“ on the following dialog: If you're an ISV developer and wonder if your company participates, check Participating Companies . As a developer, you'll want to read...
Yves Dolce
Answer from Jonathan Caves regarding "Tale of the __dtor method and the delete operator"
Posted
over 9 years ago
by
yvesdolc
1
Comments
Thanks Jonathan! For Whidbey we have changed the name of the destructor and constructor to {dtor} and {ctor} – this is so people cannot do the following: class X { public: X(int data) : m_data(data) { } ~X() { } void mf() { } private...
Yves Dolce
Template class to make IEnumerator type-safe in C++
Posted
over 9 years ago
by
yvesdolc
0
Comments
This is my current version. Comments are welcome. (yes, I removed the previous posts as I did not want to fill this blog with “ Here is verssio n“... Sorry.) class EnumeratorBase { public : bool MoveNext() { return m_e->MoveNext...
Yves Dolce
Follow-up: Tale of the __dtor method and the delete operator
Posted
over 9 years ago
by
yvesdolc
0
Comments
Wesner Moise wrote “ So, how do we call the destructor from other managed languages, where destructor calls have to be explicit ” If you can change the managed C++ code, then I would highly advise you to do so by implementing the IDisposable...
Yves Dolce
Managed array of integers and System::Void's
Posted
over 9 years ago
by
yvesdolc
0
Comments
Those 4 lines create a managed array of integers (System::Int32 value type). I prefer the syntax of the first version but I would understand people using the 4 th : Int32 mai[] = new Int32[2] ; Int32 mai_1 __gc [] = new Int32[2] ; Int32 mai_2...
Yves Dolce
"Tale of the __dtor method and the delete operator" : the return
Posted
over 9 years ago
by
yvesdolc
0
Comments
Edward Dudenhoefer was kind enough to comment on that post. You can get this information in more details by looking at “TLS310 - Visual C++ "Whidbey": New Language Design and Enhancements ( Start Session , Download Powerpoint )” but for those...
Yves Dolce
Tale of the __dtor method and the delete operator
Posted
over 9 years ago
by
yvesdolc
0
Comments
Last week, I was reviewing the Managed C++ MOC course as I was scheduled to give it to an ISV. Something I read triggered my curiosity. I was wondering what delete p ; delete p ; would mean in Managed C++ as I know the second call is undefined...
Yves Dolce
Supporting Direct Handles to Boxed Value Types
Posted
over 9 years ago
by
yvesdolc
0
Comments
Thanks for the answer Stan.
Page 1 of 1 (13 items)