<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx</link><description>Endpoint-exclusive RECTs and lines are much easier to work with. For example, the width of a rectangle is right - left , and its height is bottom - top . If rectangles were endpoint-inclusive, then there would be annoying +1's everywhere. End-point exclusive</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75656</link><pubDate>Wed, 18 Feb 2004 17:44:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75656</guid><dc:creator>Alex Black</dc:creator><description>Hi Raymond, I ran into issues related to this just yesterday! (great BLOG btw).&lt;br&gt;&lt;br&gt;1) What is the width of a RECT?&lt;br&gt;width = rect.right - rect.left +1?&lt;br&gt;&lt;br&gt;2) Are RECTs ever interpreted differently? consider FillRect vs. InvalidateRect or GetClientRect&lt;br&gt;&lt;br&gt;Basically, I have a VB picturebox, that is 640x480 pixels.  I call GetClientRect and get (0,0,640,480), then I call MyGetRectWidth(rect) and get 639!&lt;br&gt;&lt;br&gt;am I misunderstanding something here? :)&lt;br&gt;&lt;br&gt;thx!&lt;br&gt;&lt;br&gt;- Alex</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75661</link><pubDate>Wed, 18 Feb 2004 17:55:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75661</guid><dc:creator>Raymond Chen</dc:creator><description>The width of a rectangle is &amp;quot;rect.right-rect.left&amp;quot; and you should assume that's how all Windows functions treat rectangles.  Any exceptions are (or should be) explicitly called out in the function documentation. I don't know of any exceptions offhand.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75680</link><pubDate>Wed, 18 Feb 2004 18:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75680</guid><dc:creator>Mark Smith</dc:creator><description>It's 20 years old, but the Quickdraw section of Inside Macintosh Volume I still has the clearest explanation of why coordinates-between-the-pixels is a Good Thing.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75689</link><pubDate>Wed, 18 Feb 2004 18:48:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75689</guid><dc:creator>Dan Maas</dc:creator><description>I think the preferred convention is that the center of pixel N,M is at (N+0.5,M+0.5), and if you must use a box filter, then the footprint of the filter is N &amp;lt;= x &amp;lt; N+1 and M &amp;lt;= y &amp;lt; M+1.&lt;br&gt;&lt;br&gt;The reason we do this is the same reason arrays start at zero rather than one in C. It seems awkward at first, but it makes the math much cleaner.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75747</link><pubDate>Wed, 18 Feb 2004 20:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75747</guid><dc:creator>Mike Dimmick</dc:creator><description>You might want to tell the Windows CE guys: FillRect draws one pixel more to the right and bottom on CE than it does on the desktop.&lt;br&gt;&lt;br&gt;Of course, there's the backwards-compatibility issue: if it gets changed now, it breaks every program already written for CE. Not nearly as many as on the desktop, true, but a significant enough number.&lt;br&gt;&lt;br&gt;I wonder if this wart made it into .NET CF?</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75826</link><pubDate>Wed, 18 Feb 2004 22:05:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75826</guid><dc:creator>CW user</dc:creator><description>And then there are MetaFiles. Raymond can you tell us a story&lt;br&gt;what's happening with rectangles when we use them with&lt;br&gt;(Enhanced)MetaFiles?&lt;br&gt;&lt;br&gt;Please! Please!</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75847</link><pubDate>Wed, 18 Feb 2004 22:19:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75847</guid><dc:creator>foo</dc:creator><description>Java uses the same scheme for substrings: myString.substring(start, end) where end is excluded. The length of the substring is simply (end - start). It's simple. I love it.&lt;br&gt;&lt;br&gt;The problem is, Java substrings are so convenient that nearly every time I do string manipulation in C#, I curse the .NET-folks for using that old-fashioned (start, length) notation.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75867</link><pubDate>Wed, 18 Feb 2004 22:42:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75867</guid><dc:creator>Simon Cooke [exMSFT]</dc:creator><description>Dan Maas:&lt;br&gt;&lt;br&gt;X+0.5, Y+0.5 being the center of the pixel is only valid if you're using floating point graphics libraries such as GDI+, DirectX or OpenGL.&lt;br&gt;&lt;br&gt;GDI and regular Win32 are integer, and so that definition doesn't really hold.&lt;br&gt;&lt;br&gt;(Of course, GDI is fixed-point internally, but that representation doesn't generally make it out of the API).</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75880</link><pubDate>Wed, 18 Feb 2004 23:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75880</guid><dc:creator>Raymond Chen</dc:creator><description>Sorry, CW, I don't know anything about metafiles. And sorry, Mike, I don't have any contacts in Windows CE (so I can't even verify whether the problem indeed exists).</description></item><item><title>Drifting off-topic...</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75914</link><pubDate>Thu, 19 Feb 2004 00:13:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75914</guid><dc:creator>Mo</dc:creator><description>Raymond, I have a question which you might be able to answer.&lt;br&gt;&lt;br&gt;All of us good boys and girls who did our homework have known for years that NT's POSIX subsystem (and by association Interix/SFU) support fork() [for those that don't know: create a duplicate of a process, usually done in such a way that no/very few pages are actually copied until they're written to - called Copy-on-Write, or COW].&lt;br&gt;&lt;br&gt;The Win32 API (as far as I can tell by RTFMing, Googling, newsgrouping, and generally given up trying some time ago) doesn't contain any equivalent - not even a closely guarded one. If I'm wrong, stop me now :)&lt;br&gt;&lt;br&gt;Assuming I'm on-base up until now, the question is this: POSIX/Interix/SFU all need to get some kind of help from the kernel at some point along the way in order to actually perform the fork. After all, they're subsystems (or a subsystem, depending on how you look at it), not kernel-mode drivers, so they don't have much more access to the MM than I do in my Win32 process. By what mechanism do they get this &amp;quot;help&amp;quot; -- and how POSIX-specific is the help that they get? Specifically, would it be at all possible to utilize this support code - assuming it exists - from within the Win32 subsystem in order to achieve the same thing?&lt;br&gt;&lt;br&gt;[Unsuprisingly enough, the fact that POSIX apps run in a different subsystem means they end up being really quite dull -- no &amp;quot;best of both worlds&amp;quot; for developers there]&lt;br&gt;&lt;br&gt;Anyway, if you know the answer (or can point to some MSDN material that explains), I'd be very much appreciative. And apologies for a great big comment which bears practically no relation to rectangles :) </description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75919</link><pubDate>Thu, 19 Feb 2004 00:16:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75919</guid><dc:creator>Raymond Chen</dc:creator><description>Sorry, Mo, I have no idea.  Gosh, people seem to be asking a lot of questions about things I know nothing about...</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75948</link><pubDate>Thu, 19 Feb 2004 01:03:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75948</guid><dc:creator>Dan Maas</dc:creator><description>Another off-topic question but maybe you can answer this... Is there an official policy on whether C++ exceptions should be able to propagate through Win32 API callbacks? i.e. if I throw an exception inside of a WndProc is it supposed to come out of the message loop or are the results &amp;quot;undefined&amp;quot;? I know this doesn't work with GCC on Windows but I am wondering what VC++ does. I assume you have to catch the exception before it propagates back out into Win32 code?</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75952</link><pubDate>Thu, 19 Feb 2004 01:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75952</guid><dc:creator>sd</dc:creator><description>Great article!  I found this site through the aformentioned kuro5hin comment.  I really dig the inside look at the Windows platform.  Keep 'em comming!</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75955</link><pubDate>Thu, 19 Feb 2004 01:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75955</guid><dc:creator>Mo</dc:creator><description>Thanks anyway, Raymond. It was worth a try :)&lt;br&gt;&lt;br&gt;I guess it's back to the drawing board with that one..&lt;br&gt;&lt;br&gt;(I promise I won't use any undocumented APIs, though...)</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#75956</link><pubDate>Thu, 19 Feb 2004 01:15:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:75956</guid><dc:creator>Raymond Chen</dc:creator><description>Dan: I can't think of an official policy off the top of my head against throwing C++ exceptions across Win32 callbacks, but my gut tells me nothing good can come of it...</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76025</link><pubDate>Thu, 19 Feb 2004 03:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76025</guid><dc:creator>Phaeron</dc:creator><description>Another disadvantage of inclusive rects is that you can't represent empty rects with them.&lt;br&gt;&lt;br&gt;Simon Cooke:&lt;br&gt;Even with integer coordinates you still need pixel center rules for rasterization of certain primitives, such as solid ellipses.  It is also possible to set scaling modes to gain direct access to 28.4 coordinates under NT GDI.&lt;br&gt;&lt;br&gt;</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76034</link><pubDate>Thu, 19 Feb 2004 04:06:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76034</guid><dc:creator>Pavel Lebedinsky</dc:creator><description>Re: fork() and SFU&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://weblogs.asp.net/jdzions"&gt;http://weblogs.asp.net/jdzions&lt;/a&gt; would be a better place to ask this.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76086</link><pubDate>Thu, 19 Feb 2004 06:36:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76086</guid><dc:creator>B.Y.</dc:creator><description>I agree endpoint-exclusive is a much better arrangement than endpoint-inclusive, but, I always wondered why the RECT structure have right/bottom instead of width/height, because rectangle's size and location are really two separate properties. And if you have width/height, you only need to touch left/top to move the RECT around.&lt;br&gt;&lt;br&gt;And remotely related to this - I don't know if you know this Raymond - in multiple monitor support, why is it designed such that the sides of monitor RECTs only need to touch each other ? This makes things like centering a window on screen a major hassle, sometimes not even possible, it's theoretically possible to have 4 video cards positioned along the sides of the virtual screen, but leave a hole in the center.&lt;br&gt;&lt;br&gt;Why wasn't it designed such that all video cards must form one big rectangle and cover all of it, and have the same bit depth ? Sure that reduces the flexibility, but it's a lot easier to program.&lt;br&gt;</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76107</link><pubDate>Thu, 19 Feb 2004 07:33:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76107</guid><dc:creator>Raymond Chen</dc:creator><description>right/bottom vs. width/height - it's a matter of style I guess. I happen to like right/bottom but then again I'm biased.&lt;br&gt;&lt;br&gt;Multiple monitors: One could turn the question around.  Why arbitrarily restrict all monitors to be the same resolution and be at the same color depth?  In the early days of multiple monitors, the two video cards had very different capabilities. You had the onboard video that came with your motherboard (usually pretty lame) and a video card that you bought separately (pretty powerful).  Forcing all video cards to be at the same resolution and color depth would mean that you would be running your expensive video card at some awful resolution like 800x600 because that's all the motherboard video could do. And then you'd be complaining, &amp;quot;I paid $200 for this video card. Why are you forcing me to run this pathetic resolution! Microsoft must be in a conspiracy with the video card manufacturers!&amp;quot;&lt;br&gt;&lt;br&gt;And you shouldn't be trying to center on the virtual screen anyway. Pick a monitor and center on that monitor. If you try to center on the virtual screen, you will often end up with a window that is exactly cut in half by the two monitors, which is pretty useless.</description></item><item><title>Fork on Windows 2000</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76152</link><pubDate>Thu, 19 Feb 2004 09:17:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76152</guid><dc:creator>Christian</dc:creator><description>Look here:&lt;br&gt;&lt;a target="_new" href="http://www.cygwin.com/ml/cygwin/2002-02/msg00068.html"&gt;http://www.cygwin.com/ml/cygwin/2002-02/msg00068.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I own that book (Windows NT/2000 Native API Reference) and indeed it contains an example code that does a fork with copy-on-write</description></item><item><title>Command &amp; message ids</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76173</link><pubDate>Thu, 19 Feb 2004 09:56:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76173</guid><dc:creator>Moi</dc:creator><description>Nothing to do with this article, Ramon, just an oddity I came across recently. In the MFC's AFXRES.H there are command ids for things like copy, paste, etc. and in WINUSER.H there are ids for messages which perform those types of actions (WM_COPY, WM_PASTE, etc.). Why are they not in the same order?</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76174</link><pubDate>Thu, 19 Feb 2004 09:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76174</guid><dc:creator>Mike Dimmick</dc:creator><description>On C++ exceptions in callbacks: if compiled with MSVC, a C++ exception is simply a Win32 SEH exception with code 0xE06D7363 (or 0xE0 'm''s''c'). IIRC, a pointer to the thrown object gets passed around in one of the SEH exception's parameters.&lt;br&gt;&lt;br&gt;So the answer to Dan's question is whether an SEH exception can be successfully propogated through the Win32 API at this point. I think it probably can. MFC sets up a try/catch block in AfxCallWndProc (wincore.cpp) to stop exceptions propogating out of your message handlers, although this may be for debugging purposes. ATL doesn't bother.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76176</link><pubDate>Thu, 19 Feb 2004 10:01:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76176</guid><dc:creator>Moi</dc:creator><description>Ramon? Sorry, Raymond, I guess my typing fingers are slacking. I shall punich them appropriately.</description></item><item><title>FillRectangle/DrawRectangle</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76183</link><pubDate>Thu, 19 Feb 2004 10:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76183</guid><dc:creator>hans</dc:creator><description>There is a difference between FillRectangle() and DrawRectangle(). FillRectangle() is endpoint-exclusive but DrawRectangle() is endpoint-inclusive. &lt;br&gt;&lt;br&gt;Some sample-code:&lt;br&gt;&lt;br&gt;        private void button1_Click(object sender, System.EventArgs e)&lt;br&gt;        {&lt;br&gt;            Graphics g=System.Drawing.Graphics.FromHwnd(this.Handle);&lt;br&gt;            &lt;br&gt;            g.FillRectangle(Brushes.Beige,30,30, 100,100);&lt;br&gt;            g.DrawRectangle(Pens.Black,30,30,100,60);&lt;br&gt;            &lt;br&gt;            Rectangle r1=new Rectangle(30,150,100,100);&lt;br&gt;            Rectangle r2=new Rectangle(30,150,100,60);&lt;br&gt;&lt;br&gt;            g.FillRectangle(Brushes.Beige,r1);&lt;br&gt;            g.DrawRectangle(Pens.Black,r2);&lt;br&gt;            &lt;br&gt;        }&lt;br&gt;&lt;br&gt;Both rectangles have the same width but the drawn rectangle is one pixel wider than the filled one... Why is this?&lt;br&gt;</description></item><item><title>re: FillRectangle/DrawRectangle </title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76283</link><pubDate>Thu, 19 Feb 2004 13:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76283</guid><dc:creator>hans</dc:creator><description>If you use FillEllipse() and DrawEllipse() there seems to be the same inconsistency. Maybe this applies to all Drawing-Functions.&lt;br&gt;Its especially apparent when using small values for width/height.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76339</link><pubDate>Thu, 19 Feb 2004 15:47:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76339</guid><dc:creator>Raymond Chen</dc:creator><description>Mike: Now I remember - throwing across a callback will often mess up the activation context stack. These sorts of bugs are incredibly hard to track down. You end up dying with STATUS_SXS_EARLY_DEACTIVATION or STATUS_SXS_INVALID_DEACTIVATION for no apparent reason.&lt;br&gt;&lt;br&gt;Moi: You'll have to ask an MFC person.&lt;br&gt;&lt;br&gt;hans: Um, that's some .NET thing isn't it. You should ask a .NET person.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76342</link><pubDate>Thu, 19 Feb 2004 15:51:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76342</guid><dc:creator>Mike Dunn</dc:creator><description>Raymond, your mention of multiple monitors reminds me of something (and I think you can answer this one ;) )&lt;br&gt;A while ago you gave a great explantion of WM_NCCALCSIZE. Could you do the same for the MINMAXINFO struct? My specific problem is figuring out what to put in ptMaxSize. The docs only say &amp;quot;this refers to the primary monitor&amp;quot; which isn't much help.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76362</link><pubDate>Thu, 19 Feb 2004 16:24:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76362</guid><dc:creator>Seth McCarus</dc:creator><description>And Raymond, since we sort-of got onto the topic of exception handling, can we expect your dissertation on it soon?  That's one I'm looking forward to!&lt;br&gt;</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76444</link><pubDate>Thu, 19 Feb 2004 18:58:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76444</guid><dc:creator>Andreas Häber</dc:creator><description>Raymond: Seems like the graphic code above (Hans' comment) is GDI+, so it's not only a .NET thing :) </description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76450</link><pubDate>Thu, 19 Feb 2004 19:07:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76450</guid><dc:creator>Raymond Chen</dc:creator><description>Okay, well GDI+ is less than 5 years old so I'm going to declare it &amp;quot;not old enough&amp;quot;. :-)</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76477</link><pubDate>Thu, 19 Feb 2004 19:49:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76477</guid><dc:creator>Eric Lippert</dc:creator><description>Seth, if you want an excellent article on how exception handling works, try this one:&lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://weblogs.asp.net/cbrumme/archive/2003/10/01/51524.aspx"&gt;http://weblogs.asp.net/cbrumme/archive/2003/10/01/51524.aspx&lt;/a&gt;&lt;br&gt;</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76567</link><pubDate>Thu, 19 Feb 2004 22:37:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76567</guid><dc:creator>Not actually a .NET admirer</dc:creator><description>&amp;gt; declare it &amp;quot;not old enough&amp;quot;. :-) &lt;br&gt;&lt;br&gt;Yes,&lt;br&gt;&lt;br&gt;It says &amp;quot;The Old New Thing&amp;quot; and &amp;quot;not actually a .NET blog&amp;quot;.&lt;br&gt;&lt;br&gt;I don't know how to ask, but what I am trying here is something&lt;br&gt;like, in a way and sort of, heh, Raymond did you look at .NET stuff?&lt;br&gt;Or better, do you participate on it? Do you like it? Is there on&lt;br&gt;this blog or wherever some insight from you about .NET and&lt;br&gt;related technologies? Looks to me as if you are the only guy from&lt;br&gt;MS discussing good old Win32 stuff, while everybody else is&lt;br&gt;doing .NET.&lt;br&gt;&lt;br&gt;PS. That's why I don't read any other programming blogs but yours.&lt;br&gt;If you go .NET, then I don't know what I'll do. I'll be lost!&lt;br&gt;</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#76571</link><pubDate>Thu, 19 Feb 2004 22:47:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:76571</guid><dc:creator>Raymond Chen</dc:creator><description>Hey stop introducing more .NET content into this &amp;quot;not .NET&amp;quot; blog!  I use it but I don't write about it.</description></item><item><title>re: Why are RECTs endpoint-exclusive?</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#78674</link><pubDate>Mon, 23 Feb 2004 21:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:78674</guid><dc:creator>Ben Hutchings</dc:creator><description>&amp;gt; Why wasn't it designed such that all video cards must form one big rectangle and cover all of it, and have the same bit depth ?&lt;br&gt;&lt;br&gt;If your monitor screens aren't at quite the same height, you won't want the mouse cursor to jump up or down as it crosses between them. Well, I don't anyway.</description></item><item><title>Commenting on this entry has been closed.</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#192199</link><pubDate>Fri, 23 Jul 2004 07:02:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:192199</guid><dc:creator>Raymond Chen</dc:creator><description>Commenting closes after two weeks. &lt;br&gt;&lt;br&gt;&lt;a target="_new" href="http://weblogs.asp.net/oldnewthing/archive/2004/02/21/77681.aspx"&gt;http://weblogs.asp.net/oldnewthing/archive/2004/02/21/77681.aspx&lt;/a&gt; </description></item><item><title>How to host an IContextMenu, part 10 - Composite extensions - groundwork</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#238633</link><pubDate>Wed, 06 Oct 2004 16:59:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:238633</guid><dc:creator>The Old New Thing</dc:creator><description>Preparing to combine multiple context menu extensions into one.</description></item><item><title>re: Bottom Right Exclusive Rects </title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#243974</link><pubDate>Mon, 18 Oct 2004 18:43:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:243974</guid><dc:creator>The Old New Thing</dc:creator><description /></item><item><title>Generating tooltip text dynamically</title><link>http://blogs.msdn.com/oldnewthing/archive/2004/02/18/75652.aspx#650753</link><pubDate>Thu, 29 Jun 2006 17:00:16 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:650753</guid><dc:creator>The Old New Thing</dc:creator><description>Using the TTN_GETDISPINFO notification.</description></item></channel></rss>