User Mo Flanagan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:37:44Zhttp://stackoverflow.com/feeds/user/38791http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1076414/c-directive-to-indicate-32-bit-or-64-bit-build/1076458#10764580Answer by Mo Flanagan for C# Directive to indicate 32-bit or 64-bit buildMo Flanagan2009-07-02T20:12:11Z2009-07-02T20:12:11Z<p>I am not sure if this is what you are looking for but I check the IntPtr.Size to detect 32bit versus 64bit runtime. Note that this tells you the runtime environment, you might be running in WOW64</p>
<p>if (IntPtr.Size == 4)
{
//32 bit
}
else if (IntPtr.Size == 8)
{
//64 bit
}
else
{
//the future
}</p>
http://stackoverflow.com/questions/284394/net-xmldocument-why-doctype-changes-after-save/1070268#10702683Answer by Mo Flanagan for .NET XmlDocument : Why DOCTYPE changes after Save?Mo Flanagan2009-07-01T17:03:07Z2009-07-01T17:16:19Z<p>There is a bug in System.Xml when you set XmlDocument.XmlResolver = null. The workaround is to create a custom XmlTextWriter:</p>
<pre><code> private class NullSubsetXmlTextWriter : XmlTextWriter
{
public NullSubsetXmlTextWriter(String inputFileName, Encoding encoding)
: base(inputFileName, encoding)
{
}
public override void WriteDocType(string name, string pubid, string sysid, string subset)
{
if (subset == String.Empty)
{
subset = null;
}
base.WriteDocType(name, pubid, sysid, subset);
}
}
</code></pre>
<p>In your code, create a new NullSubsetXmlTextWriter(pathToNewXml, Encoding.UTF8) and pass that object to the oDoc.Save() method.</p>
<p>Here is the <a href="http://www.vistax64.com/net-general/215921-xmldocument-save-null-xmlresolver-modifies-doctype-tag.html" rel="nofollow">Microsoft support case</a> where you can read about the workaround (it describes the workaround but doesn't provide the code).</p>
http://stackoverflow.com/questions/954628/which-is-the-best-tool-to-test-for-memory-leak-in-win32-com-application/964909#9649090Answer by Mo Flanagan for Which is the best tool to test for Memory leak in Win32/COM application?Mo Flanagan2009-06-08T13:24:39Z2009-06-08T13:24:39Z<p><a href="http://msdn.microsoft.com/en-us/library/ms220948%28VS.80%29.aspx" rel="nofollow">Application Verifier</a> is free and from Microsoft. It detects memory leaks, double frees, overwrites and many other things. I use it all the time and it has helped me track down some nasty issues.</p>
http://stackoverflow.com/questions/940156/setwindowshookex-with-whmouse-not-capturing-mouse-moves-over-htcaption-area/941679#9416790Answer by Mo Flanagan for SetWindowsHookEx with WH_MOUSE not capturing mouse moves over HTCAPTION areaMo Flanagan2009-06-02T20:19:35Z2009-06-02T20:19:35Z<p>A few questions:
Are you using this to hook the mouse in your own process or other processes?
Are you using dwThreadId = 0?
Are you getting mouse clicks over the caption area?</p>
http://stackoverflow.com/questions/941440/c-p-invoke-difficulties-marshalling-pointers/941649#9416490Answer by Mo Flanagan for c# p/invoke difficulties marshalling pointersMo Flanagan2009-06-02T20:13:52Z2009-06-02T20:13:52Z<p>I have found <a href="http://msdn.microsoft.com/en-us/library/ms220948%28VS.80%29.aspx" rel="nofollow">AppVerifier</a> useful for tracking down P/Invoke marshal issues before. It's free and from Microsoft. </p>
http://stackoverflow.com/questions/878747/pure-win32-cross-process-child-windows/911315#9113150Answer by Mo Flanagan for Pure win32 cross-process child windows Mo Flanagan2009-05-26T15:30:02Z2009-05-26T15:30:02Z<p>If you want to know when a window in another process is being moved or sized, you need to install a hook,catch the WM_MOVING and WM_SIZING messages and reflect those messages back to your controller process. Sorry it's not the answer you want! I don't blame you for wanting to avoid cross process hooks, its a bit of a pain...</p>
http://stackoverflow.com/questions/891345/get-a-screenshot-of-a-specific-application/911225#9112258Answer by Mo Flanagan for Get a screenshot of a specific applicationMo Flanagan2009-05-26T15:15:13Z2009-05-26T15:15:13Z<p>The PrintWindow win32 api will capture a window bitmap even if the window is covered by other windows or if it is off screen:</p>
<pre><code>[DllImport("user32.dll")]
public static extern bool GetWindowRect(IntPtr hWnd, out RECT lpRect);
[DllImport("user32.dll")]
public static extern bool PrintWindow(IntPtr hWnd, IntPtr hdcBlt, int nFlags);
public static Bitmap PrintWindow(IntPtr hwnd)
{
RECT rc;
GetWindowRect(hwnd, out rc);
Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb);
Graphics gfxBmp = Graphics.FromImage(bmp);
IntPtr hdcBitmap = gfxBmp.GetHdc();
PrintWindow(hwnd, hdcBitmap, 0);
gfxBmp.ReleaseHdc(hdcBitmap);
gfxBmp.Dispose();
return bmp;
}
</code></pre>
http://stackoverflow.com/questions/909746/how-to-create-an-application-that-listens-to-windows-events/911192#9111921Answer by Mo Flanagan for How to create an application that listens to windows events?Mo Flanagan2009-05-26T15:08:50Z2009-05-26T15:08:50Z<p>You are probably better off registering a hotkey instead of installing a gobal keyboard hook:</p>
<p><a href="http://delphi.about.com/cs/adptips2001/a/bltip0601_3.htm" rel="nofollow">http://delphi.about.com/cs/adptips2001/a/bltip0601_3.htm</a></p>
http://stackoverflow.com/questions/741643/capturing-a-hidden-window-in-vista/837418#8374180Answer by Mo Flanagan for Capturing a hidden window in VistaMo Flanagan2009-05-07T22:36:35Z2009-05-07T22:36:35Z<p>Do this (C#)</p>
<pre><code> public static Bitmap PrintWindow(IntPtr hwnd)
{
RECT rc;
WinUserApi.GetWindowRect(hwnd, out rc);
Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb);
Graphics gfxBmp = Graphics.FromImage(bmp);
IntPtr hdcBitmap = gfxBmp.GetHdc();
bool succeeded = WinUserApi.PrintWindow(hwnd, hdcBitmap, 0);
gfxBmp.ReleaseHdc(hdcBitmap);
if (!succeeded)
{
gfxBmp.FillRectangle(new SolidBrush(Color.Gray), new Rectangle(Point.Empty, bmp.Size));
}
IntPtr hRgn = WinGdiApi.CreateRectRgn(0, 0, 0, 0);
WinUserApi.GetWindowRgn(hwnd, hRgn);
Region region = Region.FromHrgn(hRgn);
if (!region.IsEmpty(gfxBmp))
{
gfxBmp.ExcludeClip(region);
gfxBmp.Clear(Color.Transparent);
}
gfxBmp.Dispose();
return bmp;
}
</code></pre>
http://stackoverflow.com/questions/830359/capturing-a-window-that-is-hidden-or-minimized/834473#8344731Answer by Mo Flanagan for Capturing a Window that is hidden or minimizedMo Flanagan2009-05-07T12:50:46Z2009-05-07T22:34:25Z<p>The <a href="http://msdn.microsoft.com/en-us/library/dd162869.aspx" rel="nofollow">PrintWindow</a> api works well, I use it for capturing thumbnails for hidden windows. Despite the name, it is different than WM_PRINT and WM_PRINTCLIENT, it works with pretty much every window except for Direct X / WPF windows.</p>
<p>I added some code (C#) but after reviewing how I used the code, I realized that the window isn't actually hidden when I capture its bitmap, its just off screen so this may not work for your case. Could you show the window off screen, do a print and then hide it again?</p>
<pre><code> public static Bitmap PrintWindow(IntPtr hwnd)
{
RECT rc;
WinUserApi.GetWindowRect(hwnd, out rc);
Bitmap bmp = new Bitmap(rc.Width, rc.Height, PixelFormat.Format32bppArgb);
Graphics gfxBmp = Graphics.FromImage(bmp);
IntPtr hdcBitmap = gfxBmp.GetHdc();
bool succeeded = WinUserApi.PrintWindow(hwnd, hdcBitmap, 0);
gfxBmp.ReleaseHdc(hdcBitmap);
if (!succeeded)
{
gfxBmp.FillRectangle(new SolidBrush(Color.Gray), new Rectangle(Point.Empty, bmp.Size));
}
IntPtr hRgn = WinGdiApi.CreateRectRgn(0, 0, 0, 0);
WinUserApi.GetWindowRgn(hwnd, hRgn);
Region region = Region.FromHrgn(hRgn);
if (!region.IsEmpty(gfxBmp))
{
gfxBmp.ExcludeClip(region);
gfxBmp.Clear(Color.Transparent);
}
gfxBmp.Dispose();
return bmp;
}
</code></pre>
http://stackoverflow.com/questions/785332/how-to-create-a-transparent-window-with-non-transparent-child-controls-or-child/834557#8345570Answer by Mo Flanagan for How to create a transparent window with non-transparent child controls (or child windows)?Mo Flanagan2009-05-07T13:08:12Z2009-05-07T13:08:12Z<p>You can't do this unfortunately, child windows always have the same opacity as their parent. The Google Desktop Toolbar had a neat trick to give the illusion of an opaque textbox on a translucent background. They created two top level windows, one of the background and one for the textbox. Then they set the background window as the owner (not the <em>parent</em>) of the texbox. They then set the background as transparent. It's quite a bit of work to get right, but it's the only way to do it without rendering the whole thing yourself using UpdateLayeredWindow.</p>
http://stackoverflow.com/questions/812686/can-a-window-be-always-on-top-of-just-one-other-window/834509#8345090Answer by Mo Flanagan for Can a window be always on top of just one other window?Mo Flanagan2009-05-07T12:58:27Z2009-05-07T12:58:27Z<p>Wouldn't creating an ownership relationship do the trick?</p>
<p>SetWindowLong(hwndOwner, GWL_HWNDPARENT, hwndChild)</p>
<p>The windows can be in different processes and you can call this from any process. This will ensure that the child window is always above the owner window. This is different than SetParent which actually creates a Parent / Child relationship. <a href="http://msdn.microsoft.com/en-us/library/ms997562.aspx" rel="nofollow">Read through this article</a> (its from 1993 but still mostly correct) to see the distinction between ownership and parenting.</p>
http://stackoverflow.com/questions/782769/sharing-message-queues-among-threads-in-windows/782831#7828310Answer by Mo Flanagan for Sharing message queues among threads (in Windows)Mo Flanagan2009-04-23T17:47:50Z2009-04-23T17:47:50Z<p>GetMessage and PeekMessage only read messages for the current thread, you can't use them to read messages sent to the input queue owned by another thread.</p>
<p>Try joining the thread input queues using <a href="http://msdn.microsoft.com/en-us/library/ms681956%28VS.85%29.aspx" rel="nofollow">AttachThreadInput</a>, that might work. </p>
http://stackoverflow.com/questions/778571/communicate-btw-2-pcs-using-shared-memory/778711#7787110Answer by Mo Flanagan for communicate btw 2 pc's using shared memory?Mo Flanagan2009-04-22T19:11:21Z2009-04-22T19:33:30Z<p>The snarky answer "you can't do it because computers don't share memory" is just plain wrong. <strong>Processors within a single computer do not share memory</strong>, the hardware and software implement shared memory protocols to provide an illusion of shared memory.</p>
<p>Shared memory protocols across processors are very similar to shared memory protocols across computers, its the same problem.</p>
<p>Search for "distributed cache" "tuple space" and <a href="http://en.wikipedia.org/wiki/Distributed%5Fshared%5Fmemory" rel="nofollow">"distributed shared memory"</a> it might provide some food for thought. <a href="http://www.danga.com/memcached/" rel="nofollow">memcached</a> is a very popular open source product you can take a look at.</p>
<p>EDIT: Regarding the comment about "cache coherent architecture". Each processor has its own local cache of memory (L1 cache for example). There is a whole bunch of "stuff" that happens to make this "cache coherent" so that it appears each processor is reading and writing to a shared memory space. The processors are absolutely, positively not writing directly to a single shared memory space. The problem is conceptually the same for shared memory across computers.</p>
http://stackoverflow.com/questions/777316/detecting-windows-pop-ups/778780#7787801Answer by Mo Flanagan for Detecting Windows Pop UpsMo Flanagan2009-04-22T19:26:28Z2009-04-22T19:26:28Z<p>When you call GetDC, you get the DC for the client area. To get the DC for the whole window (including the non-client area title bar and border) use <a href="http://msdn.microsoft.com/en-us/library/dd144873%28VS.85%29.aspx" rel="nofollow">GetDCEx</a> with the DCX_WINDOW flag. </p>
<p>Also, check out the <a href="http://msdn.microsoft.com/en-us/library/dd162869.aspx" rel="nofollow">PrintWindow</a> function, it lets you take a snapshot of a window even if its obscured or partially off screen - its not perfect but it works pretty well.</p>
http://stackoverflow.com/questions/721569/determine-if-a-given-window-is-currently-being-moved/769386#7693860Answer by Mo Flanagan for Determine if a given window is currently being moved.Mo Flanagan2009-04-20T17:55:25Z2009-04-20T23:46:05Z<p>You can do this with <a href="http://msdn.microsoft.com/en-us/library/ms633506%28VS.85%29.aspx" rel="nofollow">GetGUIThreadInfo</a> - no hooking needed. Use GetWindowThreadProcessId to get the TID for your hwnd then check the GUITHREADINFO.flags and GUITHREADINFO.hwndMoveSize to see if your window is in a move / size loop.</p>
http://stackoverflow.com/questions/745404/using-layered-windows-to-create-smooth-window-borders/769374#7693741Answer by Mo Flanagan for Using layered windows to create smooth window bordersMo Flanagan2009-04-20T17:52:06Z2009-04-20T17:52:06Z<p>My product uses layered windows to draw the little tabs I attach to each window. I used layered windows to get the smooth rounding without aliasing. The only nasty problem I have run into so far is that some OpenGL windows scribble on top of layered windows on Windows XP and Vista without DWM. Its a low level problem and Microsoft has not been terribly helpful. You can reproduce it by opening up Google Earth and dragging your application over the main rendering window, your layered window will disappear.</p>
http://stackoverflow.com/questions/749171/how-to-attach-a-winforms-dialog-to-an-existing-toolbar-menubar-compiled-c-app/769352#7693520Answer by Mo Flanagan for How to attach a winforms dialog to an existing toolbar/menubar (compiled C++ app)?Mo Flanagan2009-04-20T17:47:21Z2009-04-20T17:47:21Z<p>Attach in what way? Are you talking about Win32 Ownership / Parenting?</p>
http://stackoverflow.com/questions/743866/configuring-file-for-dlls/743877#7438771Answer by Mo Flanagan for configuring file for DLLsMo Flanagan2009-04-13T13:23:38Z2009-04-13T13:23:38Z<p>Load your DLL into a new AppDomain and set the AppDomainSetup.ConfigurationFile. This will let you create a separate config file for each custom DLL. </p>
http://stackoverflow.com/questions/738015/do-good-oo-developers-have-add/738656#7386561Answer by Mo Flanagan for Do good OO Developers have ADD?Mo Flanagan2009-04-10T19:39:46Z2009-04-10T19:39:46Z<p>The best two developers that I know are pretty much the exact opposite of every item on your list. They are very diligent and thoughtful and have a tremendous ability to focus and think deeply about a problem.</p>
<p>I see these traits more in the entrepreneurs that I know, but even there its not at all the rule.</p>
<p>Maybe I just know boring people?</p>
http://stackoverflow.com/questions/735791/hadoop-examples/737954#7379541Answer by Mo Flanagan for Hadoop examples?Mo Flanagan2009-04-10T15:14:18Z2009-04-10T15:14:18Z<p>Amazon has a new service based on Hadoop, its a great way to get started and they have some nice examples. <a href="http://aws.amazon.com/elasticmapreduce/" rel="nofollow">http://aws.amazon.com/elasticmapreduce/</a></p>
http://stackoverflow.com/questions/737845/how-do-you-stay-grounded-in-your-work/737936#7379360Answer by Mo Flanagan for How do you stay grounded in your work?Mo Flanagan2009-04-10T15:09:57Z2009-04-10T15:09:57Z<p>Go to a psychologist. Your post is very introspective so you would probably make progress quickly with a little help from a professional.</p>
http://stackoverflow.com/questions/737444/start-another-exe-in-managed-code/737469#7374693Answer by Mo Flanagan for Start another EXE in Managed CodeMo Flanagan2009-04-10T12:23:31Z2009-04-10T12:23:31Z<p>You could use Assembly.ExecuteAssembly if it is managed. This will execute the main entry point in your current process instead of spinning up a new process.</p>
http://stackoverflow.com/questions/734674/creating-a-win32-modal-window-with-createwindow/737448#7374480Answer by Mo Flanagan for Creating a win32 modal window with CreateWindowMo Flanagan2009-04-10T12:14:14Z2009-04-10T12:14:14Z<p>Make sure you set the hwndParent in CreateWindow and use EnableWindow(false) to disable the parent after showing the pop up window. Then enable the parent with EnableWindow(true) after the pop up window has been closed.</p>
http://stackoverflow.com/questions/730856/what-is-a-better-design/730862#7308624Answer by Mo Flanagan for What is a better design?Mo Flanagan2009-04-08T16:50:45Z2009-04-08T16:50:45Z<p>Its hard to tell from method names alone. One heuristic I use to break a class up is to look at the state variables. Are there pieces of state that tend to be used together? Can they be broken out into a separate class? </p>
http://stackoverflow.com/questions/713441/should-non-technical-project-managers-be-paid-more-than-programmers/713722#7137220Answer by Mo Flanagan for Should non-technical project managers be paid more than programmers?Mo Flanagan2009-04-03T12:32:39Z2009-04-03T12:32:39Z<p>PM: Software development is a mechanical and low skill job. The hard part is coming up with the Power Point slides to sell the vision, the spreadsheets to create a timeline and the Gannt chart to allocate resources. Basically, Software Developers are just overpaid touch-typists.</p>
<p>DEV: What?! Software development is subtle, its a craft - we are half artist, half engineer! All you Project Managers do is go to meetings and create unrealistic schedules based on incomplete information. Basically Project Managers are just overpaid administrative assistants.</p>
<p>Your salary is about perceived value, not some objective pay scale <a href="http://www.joelonsoftware.com/articles/fog0000000038.html" rel="nofollow">(unless it <em>is</em> based on a pay scale</a>). Don't spend any energy thinking about "should". You work in a place that values PM's at a 2-3 time multiple of developers - either accept it or leave. There are plenty of places where the average developer gets paid more than the average PM. There are places where the QA staff, the developers and the PM's all get paid around the same amount (Microsoft, for example).</p>
http://stackoverflow.com/questions/197182/winforms-app-like-google-chrome-with-multiple-processes/492033#4920331Answer by Mo Flanagan for Winforms app like google chrome with multiple processesMo Flanagan2009-01-29T15:23:36Z2009-03-27T02:28:30Z<p>My product, <a href="http://windowtabs.com" rel="nofollow">WindowTabs.com</a>, kind of does this. You need to use Win32 - I suggest you avoid using SetParent because you end up attaching the thread input. Instead, draw the tabs above the windows and use SetWindowPos to move the windows as a group. Also, some third party controls like Infragistic don't function correctly if you parent the form at a Win32 level. </p>
http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520920#5209209Answer by Mo Flanagan for What are common concurrency pitfalls?Mo Flanagan2009-02-06T16:13:42Z2009-03-27T02:20:19Z<p>Concurrency doesn't have many pitfalls.</p>
<p>Synchronizing access to shared data, however, is tricky.</p>
<p>Here are some questions anyone writing shared-data synchronization code should be able to answer:</p>
<ol>
<li>What is InterlockedIncrement?</li>
<li>Why does InterlockedIncrement need to exist at an assembly language level?</li>
<li>What is read write reordering?</li>
<li>What is the volatile keyword (in c++) and when do you need to use it?</li>
<li>What is a synchronization hierarchy?</li>
<li>What is the ABA problem?</li>
<li>What is cache coherency?</li>
<li>What is a memory barrier?</li>
</ol>
<p>"Shared everything" concurrency is an extremely leaky abstraction. Adopt <a href="http://en.wikipedia.org/wiki/Message%5Fpassing" rel="nofollow">shared nothing message passing</a> instead. </p>
http://stackoverflow.com/questions/663322/are-there-any-common-design-patterns-or-common-idioms-that-are-important-for-c/688298#6882980Answer by Mo Flanagan for Are there any common Design patterns or common idioms that are important for C++ win32 multithreading programming?Mo Flanagan2009-03-27T02:17:23Z2009-03-27T02:17:23Z<p>I use <a href="http://en.wikipedia.org/wiki/Message%5Fpassing" rel="nofollow">message passing, share nothing concurrency</a> both for my current product and for high performance desktop applications I have written in the past. In my experience, its better to avoid shared data synchronization. You can use NamedPipes, window messages or sockets to communicate between threads.</p>
<p>If you do decide to try and syncronize access to shared data, <a href="http://stackoverflow.com/questions/520837/what-are-common-concurrency-pitfalls/520920#520920">take a look at this topic.</a></p>
http://stackoverflow.com/questions/664859/implementation-details-of-gdi-clipping/688288#6882881Answer by Mo Flanagan for Implementation details of GDI clippingMo Flanagan2009-03-27T02:11:10Z2009-03-27T02:11:10Z<p>Test it. </p>
<p>Attach your favorite debugger (Windbg, CDB) and use the <a href="http://msdn.microsoft.com/en-us/library/cc266752.aspx" rel="nofollow">WT command</a> to trace the execution path statistics. Compare ::Rectangle(context, 0, 0, 50, 50); with ::Rectangle(context, 0, 0, 51, 51);</p>
http://stackoverflow.com/questions/1104341/net-c-binding-iliststring-to-a-datagridview/1104426#1104426Comment by Mo Flanagan on .NET / C# Binding IList<string> to a DataGridViewMo Flanagan2009-11-13T15:38:59Z2009-11-13T15:38:59ZExactly what I was looking for, anonymous types are great for this sort of thing.http://stackoverflow.com/questions/237719/most-frustrating-programming-style-youve-encountered/530008#530008Comment by Mo Flanagan on Most frustrating programming style you've encounteredMo Flanagan2009-10-02T16:40:13Z2009-10-02T16:40:13ZI suppose in that specific case it would be ok ;)http://stackoverflow.com/questions/1480646/how-can-they-do-that-officetab-and-windowstab/1480686#1480686Comment by Mo Flanagan on How can they do that? (OfficeTab and WindowsTab)Mo Flanagan2009-09-26T20:46:57Z2009-09-26T20:46:57ZYup, that's how WindowTabs does it. I use the Win32 api to set position of windows and of the tabs and I use SetWindowsHookEx to get notification of various events.http://stackoverflow.com/questions/1027660/generate-google-analytics-events-utm-gif-requests-serverside/1080426#1080426Comment by Mo Flanagan on Generate Google Analytics events (__utm.gif requests) serversideMo Flanagan2009-09-22T15:47:47Z2009-09-22T15:47:47Zthe links are dead unfortunately.http://stackoverflow.com/questions/20981/how-many-lines-of-code-is-too-many/20997#20997Comment by Mo Flanagan on How many lines of code is too many?Mo Flanagan2009-07-02T20:13:23Z2009-07-02T20:13:23ZThat is meaninglesshttp://stackoverflow.com/questions/778571/communicate-btw-2-pcs-using-shared-memory/778580#778580Comment by Mo Flanagan on communicate btw 2 pc's using shared memory?Mo Flanagan2009-04-22T20:19:02Z2009-04-22T20:19:02ZThat is a very broad statement isn't it? Products like gemstone and gigaspaces are distributed caches built on top of UDP / TCP, its not some either/or thing.http://stackoverflow.com/questions/778571/communicate-btw-2-pcs-using-shared-memory/778711#778711Comment by Mo Flanagan on communicate btw 2 pc's using shared memory?Mo Flanagan2009-04-22T20:18:04Z2009-04-22T20:18:04Z@Blank: my point, and I blame myself for not explaining this clearly, is that CPU's on a multi processor machine <i>do not</i> write directly to shared memory, there are multiple layers of memory caching. There is a striking similarity between the way you implement shared memory between CPU's and the way you implement shared memory between computers on a high speed shared network.http://stackoverflow.com/questions/778571/communicate-btw-2-pcs-using-shared-memory/778580#778580Comment by Mo Flanagan on communicate btw 2 pc's using shared memory?Mo Flanagan2009-04-22T19:47:09Z2009-04-22T19:47:09ZI have a feeling mayank knows that out of the box two computers don't share memory - "is it possible to implement shared memory in a client server architecture? how do i go about it?" The answer is "yes, its possible, look up distributed shared memory"http://stackoverflow.com/questions/778571/communicate-btw-2-pcs-using-shared-memory/778711#778711Comment by Mo Flanagan on communicate btw 2 pc's using shared memory?Mo Flanagan2009-04-22T19:35:25Z2009-04-22T19:35:25ZCorrect, per-processor cache. So the processor reads and writes strictly to the L1 cache and there is a coherency protocol which periodically sends message over a shared bus to synchronize the local cache with the shared cache. <i>This is distributed shared memory</i>.http://stackoverflow.com/questions/778571/communicate-btw-2-pcs-using-shared-memory/778711#778711Comment by Mo Flanagan on communicate btw 2 pc's using shared memory?Mo Flanagan2009-04-22T19:28:36Z2009-04-22T19:28:36ZOk, so what is L1 cache?http://stackoverflow.com/questions/365094/window-on-desktop/528408#528408Comment by Mo Flanagan on Window "on desktop"Mo Flanagan2009-04-08T16:41:14Z2009-04-08T16:41:14ZHugh, did you actually try this - its easy to reproduce. 1. Call SetParent with the "Program Manager" as the parent. 2. Hang your child window (do a sleep, whatever) 3. Note that the desktop is now hung, you cannot interact with it (shortcuts etc).http://stackoverflow.com/questions/590098/detect-rpc-connection-loss-from-server-side-on-windows/593093#593093Comment by Mo Flanagan on Detect RPC connection loss from server-side on WindowsMo Flanagan2009-03-11T14:14:16Z2009-03-11T14:14:16ZI just had to answer this one for old times sake. I used to work on the RPC team at MSFT, this brought back memories of RPCDBG ;)http://stackoverflow.com/questions/613513/how-can-i-make-a-window-in-another-process-modal/632187#632187Comment by Mo Flanagan on How can I make a window in another process modal?Mo Flanagan2009-03-11T14:06:04Z2009-03-11T14:06:04ZSetWindowLong GWL_HWNDPARENT does work across processes, it joins the input queues for you.http://stackoverflow.com/questions/594589/getting-out-of-a-deep-career-rut/594642#594642Comment by Mo Flanagan on Getting out of a deep career rutMo Flanagan2009-02-27T15:37:21Z2009-02-27T15:37:21Z+1 It's a little harshly worded and it doesn't provide any suggestions or approaches. However I agree with the core idea that stopping the "harmful thinking" is critical.http://stackoverflow.com/questions/242570/copying-content-from-a-hidden-or-clipped-window-in-xp/242837#242837Comment by Mo Flanagan on Copying content from a hidden or clipped window in XP?Mo Flanagan2009-02-26T14:06:43Z2009-02-26T14:06:43ZIt uses its own logic, not WM_PRINT.