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
Managed and Native code in Longhorn – Roadmap for Existing C/C++ Applications
Posted
over 9 years ago
by
yvesdolc
1
Comments
If you missed that event, click here . For other On-Demand Webcasts, click here .
Yves Dolce
VS.NET IDE and word wrap
Posted
over 9 years ago
by
yvesdolc
1
Comments
I don't like to look nor edit code in that mode. On the other hand, I don't like having to mouse over an error description to be able to see the huge line. Guess what I just discovered: you can press Ctrl-R, Ctrl-R in the Output pane and it works great...
Yves Dolce
CComObjectCached and scalability
Posted
over 9 years ago
by
yvesdolc
0
Comments
This is related to the P.D.² section of my last blog entry . In the released versions of ATL, CComObjectCached has a potential scalability issue. That class is the one implementing IClassFactory when your component is a DLL (vs. an EXE): #if...
Yves Dolce
The [well known] dangers of indirection...
Posted
over 9 years ago
by
yvesdolc
0
Comments
Both _com_ptr_t and CComPtr template classes make your life a lot easier when consuming COM components. But if you have multi-threaded code that’s creating a lot of COM component at a very high rate, you might want to look for that old “...
Yves Dolce
I knew about those help filters but was to lazy to use them...
Posted
over 9 years ago
by
yvesdolc
0
Comments
I'm one of those who is annoyed by that Windows CE documentation: Relief from CE Documentation
Yves Dolce
Raymon Chen - "C++ scoped static initialization is not thread-safe, on purpose!"
Posted
over 9 years ago
by
yvesdolc
0
Comments
Very good information: C++ scoped static initialization is not thread-safe, on purpose! As another reader mentioned, I'm curious what's the C#/VB.NET position on this. I'm launching ILDisasm...
Yves Dolce
Modern C++ Design
Posted
over 9 years ago
by
yvesdolc
2
Comments
A dev lead in the C++ team advised me to look at that book . I just finished 1.5.1 Implementing Policy Classes with Template Template Parameters . And I thought I knew C++! I feel so humble now...
Yves Dolce
gcroot template performance
Posted
over 9 years ago
by
yvesdolc
0
Comments
Regarding my earlier post about a native type safe wrapper for a managed enumerator, I received the following comment from a developer in the Visual C++ group: One nit about these wrapper classes that you might want to be cognizant of is the small...
Yves Dolce
d1PrivateNativeTypes
Posted
over 9 years ago
by
yvesdolc
0
Comments
I did not know about this compiler switch but learned about it on what we call an internal Distribution List. Have a look at those newsgroup entries and the related “ INFO: Using the /d1PrivateNativeTypes Compiler Switch to Make Native Classes...
Yves Dolce
FOR_EACH and FOR_EACHV
Posted
over 9 years ago
by
yvesdolc
3
Comments
I know, I know. Macros are evil. So just FYI, with those: #define FOR_EACH( ___T, ___V, ___C ) \ ___T * ___V ; \ Enumerator<___T> __enum_##___V(___C) ; \ while ( (__enum_##___V).MoveNext() ? ( ___V = __enum_##___V.get_Current() ,...
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
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
"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
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
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
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
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
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
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
Supporting Direct Handles to Boxed Value Types
Posted
over 9 years ago
by
yvesdolc
0
Comments
Thanks for the answer Stan.
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
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
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...
Page 9 of 9 (223 items)
«
5
6
7
8
9