User Paul Betts - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T03:55:13Z http://stackoverflow.com/feeds/user/5728 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1919010/does-porting-count-as-derivative-work/1919021#1919021 1 Answer by Paul Betts for Does porting count as derivative work? Paul Betts 2009-12-17T01:55:48Z 2009-12-17T01:55:48Z <p>Have you tried contacting the original author? It might only take an Email to dodge this licence problem, and I'm sure he'd love that someone is porting his library for free</p> http://stackoverflow.com/questions/1919003/c-clearing-a-stringbuilder-objects-current-string/1919013#1919013 3 Answer by Paul Betts for [C#] Clearing a StringBuilder Object's Current String Paul Betts 2009-12-17T01:54:40Z 2009-12-17T01:54:40Z <pre><code>stringBuilderObject = new StringBuilder(); // Let the GC do its job </code></pre> http://stackoverflow.com/questions/1914901/which-way-to-go-with-graphic-intense-multi-touch-app-xna-or-wpf/1918973#1918973 0 Answer by Paul Betts for Which way to go with graphic-intense multi-touch app, XNA or WPF ? Paul Betts 2009-12-17T01:43:48Z 2009-12-17T01:43:48Z <p>If you use XNA, you're going to be doing a <em>lot</em> of math to manually analyze the touch information - I'd check out WPF first (or perhaps you can host XNA visuals <em>inside</em> WPF and use WPF's touch input engine)</p> http://stackoverflow.com/questions/1917489/flowdocument-contents-as-text/1918967#1918967 0 Answer by Paul Betts for FlowDocument contents as text Paul Betts 2009-12-17T01:42:10Z 2009-12-17T01:42:10Z <p>How about using <a href="http://msdn.microsoft.com/en-us/library/system.windows.markup.xamlwriter.aspx" rel="nofollow">XamlWriter</a>? </p> http://stackoverflow.com/questions/1906605/ntdllkifastsystemcallret/1918944#1918944 0 Answer by Paul Betts for ntdll!kifastsystemcallret Paul Betts 2009-12-17T01:34:13Z 2009-12-17T01:34:13Z <p>KiFastSystemCallRet means that the thread is in a syscall - an unfortunate aspect of x86 NT syscall dispatch is that it will not return the context back to the original place, but has to return to a static location in ntdll, which will fix up the context and put you back where you came from. Paste in the stacks and we can give you some more hints...</p> http://stackoverflow.com/questions/1911203/way-to-implement-ipc/1918927#1918927 0 Answer by Paul Betts for way to implement IPC Paul Betts 2009-12-17T01:31:03Z 2009-12-17T01:31:03Z <p>Either RPC / out-of-process COM or DCOM (which will eventually use RPC anyways) are the preferred way to do IPC in Windows unless you're doing something <em>really</em> simple - I've seen so many cases of people going down the named pipes route, and ending up basically reimplementing what DCOM gives you <em>for free</em>. Don't make the same mistake :)</p> http://stackoverflow.com/questions/1918785/how-to-lock-pages-in-memory-using-winapi/1918912#1918912 1 Answer by Paul Betts for How to lock pages in memory using WinAPI? Paul Betts 2009-12-17T01:25:26Z 2009-12-17T01:25:26Z <p>I have to ask, why do you need to do this? If every app thought its pages were so important that they shouldn't be paged out ever, it would be a giant waste of memory. </p> <p>If the pages are in use, they <em>won't</em> be sent to the pagefile, and if they're not in use, why keep them around? Trust in Mm, it was written by <a href="http://www.microsoft.com/presspass/exec/de/Wang/default.mspx" rel="nofollow">a very smart guy</a> :)</p> http://stackoverflow.com/questions/1918877/how-can-i-get-the-dpi-in-wpf/1918890#1918890 3 Answer by Paul Betts for How can I get the DPI in WPF? Paul Betts 2009-12-17T01:17:46Z 2009-12-17T01:17:46Z <p><a href="http://blogs.msdn.com/jaimer/archive/2007/03/07/getting-system-dpi-in-wpf-app.aspx" rel="nofollow">http://blogs.msdn.com/jaimer/archive/2007/03/07/getting-system-dpi-in-wpf-app.aspx</a> seems to work</p> <pre><code>PresentationSource source = PresentationSource.FromVisual(this); double dpiX, dpiY; if (source != null) { dpiX = 96.0 * source.CompositionTarget.TransformToDevice.M11; dpiY = 96.0 * source.CompositionTarget.TransformToDevice.M22; } </code></pre> http://stackoverflow.com/questions/1903008/why-not-call-freelibrary-from-entry-point-function/1903627#1903627 0 Answer by Paul Betts for Why not call FreeLibrary from entry point function? Paul Betts 2009-12-14T21:27:05Z 2009-12-14T21:27:05Z <p>Don't do <em>anything of consequence</em> inside of DLLMain. Seriously. Calling FreeLibrary is even worse because it'll only <em>sometimes</em> deadlock, if it happens that your free decrements the refcount to zero and the library is actually freed.</p> http://stackoverflow.com/questions/1895205/gdb-cant-load-dll/1895224#1895224 0 Answer by Paul Betts for GDB can't load dll Paul Betts 2009-12-13T00:50:47Z 2009-12-13T00:50:47Z <p>This is just a shot in the dark, but does GDB know about ASLR?</p> http://stackoverflow.com/questions/1895197/unzipping-unfinished-gzip-possible/1895222#1895222 0 Answer by Paul Betts for Unzipping unfinished gzip...possible? Paul Betts 2009-12-13T00:49:14Z 2009-12-13T00:49:14Z <p>GZip is a block-level compression - if you don't mind writing some code to make the decompressor ignore CRC failures, I suspect you can get some of the data out</p> http://stackoverflow.com/questions/1875247/cross-compile-from-opensolaris-to-windows/1875304#1875304 0 Answer by Paul Betts for Cross-compile from (open)Solaris to Windows? Paul Betts 2009-12-09T17:01:13Z 2009-12-09T17:01:13Z <p>There is no 64-bit cross-compiler for Windows, you have to compile it using MSVC compiler :(</p> http://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115 1 Answer by Paul Betts for How can C++/CLI make this situation easier? Paul Betts 2009-12-09T16:36:02Z 2009-12-09T16:36:02Z <p>This is perfectly reasonable P/Invoke code, though you should make sure that you are <strong>not</strong> passing Unicode around (check your struct defn.), because all your native declarations seem to take ANSI strings.</p> <p>C++/CLI doesn't really help you too much here - the place where it makes your life easier is when you want to write some blocks of native code, and make the interface to the C# part simpler. The only thing you could do here, is if on the C# side you really only cared about 1-2 params, you could have the C++/CLI DLL fill out the rest for you and not worry about as much ugly code on the C# side</p> http://stackoverflow.com/questions/1871494/reading-ppt-ms-powerpoint-file-in-objective-c/1871641#1871641 3 Answer by Paul Betts for Reading .ppt (MS PowerPoint) file in Objective-C Paul Betts 2009-12-09T04:49:42Z 2009-12-09T04:49:42Z <p>If Webkit doesn't have a PPT parser, you're on your own - you have to manually load PPT files, parse them, and render them; it might be easiest to make a web service to do this (this way you get real libraries), then have them download the images over HTTP so the client-side implementation is simple</p> http://stackoverflow.com/questions/1871602/how-do-i-make-that-dang-wpf-popup-go-away/1871632#1871632 0 Answer by Paul Betts for how do i make that dang wpf popup go away? Paul Betts 2009-12-09T04:45:29Z 2009-12-09T04:45:29Z <p>This is by-design; Window focus != Control focus, otherwise when you tabbed away from a window and came back, your cursor would jump back to the first control. If you want the pop up to be hidden when the window isn't active, you have to manually do this.</p> http://stackoverflow.com/questions/1871570/operation-on-different-data-types/1871583#1871583 5 Answer by Paul Betts for Operation on different data types Paul Betts 2009-12-09T04:32:04Z 2009-12-09T04:32:04Z <p>For almost anything you're doing this has almost no effect, but <em>purely for informational purposes</em>, it is usually fastest to work with data types whose size is machine word size (i.e. 32 bits on x86 and 64-bits on amd64). Additionally, SSE/MMX instructions give you benefits as well if you can group these and work on them at the same time</p> http://stackoverflow.com/questions/1871566/hot-get-the-name-of-an-object/1871578#1871578 1 Answer by Paul Betts for Hot get the name of an object? Paul Betts 2009-12-09T04:30:04Z 2009-12-09T04:30:04Z <p>The name doesn't exist outside of the source code - to do this, you would have to be attached to yourself as a debugger, or dig through the PDBs. In short, this not practical in any measure for C# and most other languages.</p> http://stackoverflow.com/questions/1850393/incrementing-an-integer-in-sql-server 0 Incrementing an Integer in SQL Server Paul Betts 2009-12-04T23:39:28Z 2009-12-05T00:12:21Z <p>Noob question here, every time I change a certain record in an SQL Server 2008 R2 table, I want to increment a RevisionId record; to do so, I'm using the following syntax:</p> <pre><code>UPDATE TheTable SET RevisionId=(SELECT RevisionId FROM TheTable WHERE Id=@id)+1 WHERE Id=@id; </code></pre> <p>Btw, I'm going to put this into a trigger so that this happens automagically, but while this code works, it feels pretty clunky - any cleaner way to do this?</p> http://stackoverflow.com/questions/1816631/how-to-read-a-display-name-from-a-dll/1816750#1816750 0 Answer by Paul Betts for How to read a display name from a DLL? Paul Betts 2009-11-29T20:58:25Z 2009-11-29T20:58:25Z <p>I think that you're looking for GetFileVersionInfoEx (<a href="http://msdn.microsoft.com/en-us/library/ms646981%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms646981%28VS.85%29.aspx</a>)</p> http://stackoverflow.com/questions/1814457/stream-audio-from-linux-server-with-silverlight/1814661#1814661 1 Answer by Paul Betts for Stream Audio from Linux Server with Silverlight Paul Betts 2009-11-29T04:32:46Z 2009-11-29T04:32:46Z <p>If you don't care about adaptive streaming, this is really easy - just share the audio out over HTTP, then add a MediaElement (or something like <a href="http://smf.codeplex.com" rel="nofollow">http://smf.codeplex.com</a> if you want it to be fancy, see my caveat at <a href="http://blog.paulbetts.org/index.php/2009/11/22/patching-silverlight-media-framework-to-work-with-mp4wmv-files/" rel="nofollow">http://blog.paulbetts.org/index.php/2009/11/22/patching-silverlight-media-framework-to-work-with-mp4wmv-files/</a>) and point it towards your Linux server running Lighttpd or Apache. </p> <p>The critical bit though, is that Silverlight will only be allowed to access the hosting site by default, so you'll need to create a clientaccesspolicy.xml file ( <a href="http://www.silverlighthack.com/post/2008/11/08/Silverlight-clientaccesspolicyxml-files-for-the-Enterprise-%28Part-1-of-2%29.aspx" rel="nofollow">http://www.silverlighthack.com/post/2008/11/08/Silverlight-clientaccesspolicyxml-files-for-the-Enterprise-%28Part-1-of-2%29.aspx</a> ) to allow SL access to your Linux server</p> http://stackoverflow.com/questions/1814643/run-a-program-as-a-service/1814649#1814649 3 Answer by Paul Betts for Run a program as a Service? Paul Betts 2009-11-29T04:25:08Z 2009-11-29T04:25:08Z <p>Using Task Scheduler is a much better idea than using a timer - you should be able to leverage your existing program to get this done</p> http://stackoverflow.com/questions/1810379/hide-controls-in-flowdocumentreader/1810741#1810741 0 Answer by Paul Betts for Hide controls in FlowDocumentReader Paul Betts 2009-11-27T21:53:06Z 2009-11-27T21:53:06Z <p>To do this, you have to edit the default template - this is easy to do in Blend but I don't know how to do it in VS. I've done this before though, it is definitely possible.</p> http://stackoverflow.com/questions/1798701/thin-ruby-is-barfing/1798768#1798768 0 Answer by Paul Betts for Thin (ruby) is barfing Paul Betts 2009-11-25T17:54:12Z 2009-11-25T17:54:12Z <p>I suspect that Thin is compiled as a 32-bit module and you're using x86_64 Ruby (or the other way around)</p> http://stackoverflow.com/questions/1798729/c-message-passing-doubts/1798749#1798749 1 Answer by Paul Betts for C++ message passing doubts Paul Betts 2009-11-25T17:51:53Z 2009-11-25T17:51:53Z <p>If all of the messages are similar, consider using a trash stack (<a href="http://library.gnome.org/devel/glib/stable/glib-Trash-Stacks.html" rel="nofollow">http://library.gnome.org/devel/glib/stable/glib-Trash-Stacks.html</a>) - this way, you can keep a stack of allocated-yet-uninitialized message structures that you can reuse without taking the constant malloc/free hit.</p> http://stackoverflow.com/questions/1798704/x86-and-x64-stack-frames/1798736#1798736 1 Answer by Paul Betts for x86 and x64 stack frames Paul Betts 2009-11-25T17:49:59Z 2009-11-25T17:49:59Z <p>The compiler is much less likely to even put this variable on the stack at all - it will most likely keep this variable in a register. The differences are on whether the compiler has to store info on the stack, moreso than <em>how</em> it stores it.</p> http://stackoverflow.com/questions/1798664/how-to-handle-this-multithread-situation-and-dont-lock/1798716#1798716 2 Answer by Paul Betts for How to handle this Multithread situation and don't lock? Paul Betts 2009-11-25T17:46:34Z 2009-11-25T17:46:34Z <p>Don't use locks at all, just make sure to do everything on the UI thread, and you can guarantee that nothing will be corrupted. Remember that dispatcher items run on the UI thread, so you <em>know</em> that if you're doing everything either in a dispatcher item or an event handler, only <strong>one</strong> thing is executing at a time.</p> http://stackoverflow.com/questions/1798609/how-to-access-physical-memory-in-linux-from-userspace/1798702#1798702 3 Answer by Paul Betts for How to access physical memory in linux from userspace ? Paul Betts 2009-11-25T17:44:20Z 2009-11-25T17:44:20Z <p>This is <em>evil</em>, you're going to have subtle problems with this approach, and you're most likely going to corrupt memory. As abyx says, have the IOCTL itself return the memory that you're interested in.</p> http://stackoverflow.com/questions/1797345/bit-shifting-masking-or-a-bit-field-struct/1798653#1798653 0 Answer by Paul Betts for Bit Shifting, Masking or a Bit Field Struct? Paul Betts 2009-11-25T17:36:24Z 2009-11-25T17:36:24Z <p>You don't have to do this, this is where the union keyword comes in - you can specify all the bits out at the same time, or by referring to the same bits with a different name, set them all at once. </p> http://stackoverflow.com/questions/1798600/mvvm-what-is-the-ideal-way-for-usercontrols-to-talk-to-each-other/1798626#1798626 1 Answer by Paul Betts for MVVM - what is the ideal way for usercontrols to talk to each other Paul Betts 2009-11-25T17:34:14Z 2009-11-25T17:34:14Z <p>The best way to do this in my opinion is via Commanding (Routed Commands / RelayCommand, etc). </p> <blockquote> <p>I want to avoid writing any code in the xaml code behind.</p> </blockquote> <p>While this is a laudable goal, you have to apply a bit of practicality to this, it shouldn't be applied 100% as a "thou shalt not" type of rule.</p> http://stackoverflow.com/questions/1798262/shutdown-exception-handling-for-win32-c/1798391#1798391 1 Answer by Paul Betts for Shutdown exception handling for Win32/C++ Paul Betts 2009-11-25T17:02:24Z 2009-11-25T17:02:24Z <p>This sounds like the CRT has put an SEH try/catch block (can't write it properly, Markdown kicks in) around some piece of code, and is catching the exception to display the message, so you never end up calling the <em>unhandled</em> exception code path. You might have to do some CRT hacking to figure out what's happening. </p> http://stackoverflow.com/questions/1918877/how-can-i-get-the-dpi-in-wpf/1918890#1918890 Comment by Paul Betts on How can I get the DPI in WPF? Paul Betts 2009-12-17T23:06:53Z 2009-12-17T23:06:53Z @tom it's just [dpiX, dpiY] / 96.0 http://stackoverflow.com/questions/1917650/disable-controlaltdelete-without-modifying-gina Comment by Paul Betts on Disable Control+Alt+Delete without modifying GINA? Paul Betts 2009-12-17T04:22:51Z 2009-12-17T04:22:51Z Seriously. Please don't ship anything that does this. http://stackoverflow.com/questions/1918877/how-can-i-get-the-dpi-in-wpf Comment by Paul Betts on How can I get the DPI in WPF? Paul Betts 2009-12-17T01:52:25Z 2009-12-17T01:52:25Z Does &quot;SnapToDevicePixels&quot; not work for you? http://stackoverflow.com/questions/1918877/how-can-i-get-the-dpi-in-wpf/1918890#1918890 Comment by Paul Betts on How can I get the DPI in WPF? Paul Betts 2009-12-17T01:51:40Z 2009-12-17T01:51:40Z Keep in mind though that WPF units aren't pixels, they're device-independent @ 96DPI &quot;pixelish-units&quot;; so really what you want, is the scale factor between 96DPI and the current DPI (so like 1.5 for 144DPI) http://stackoverflow.com/questions/1918559/how-can-i-have-ifdefs-in-xaml/1918897#1918897 Comment by Paul Betts on How can I have ifdefs in XAML Paul Betts 2009-12-17T01:40:04Z 2009-12-17T01:40:04Z Great solution, I like that syntax http://stackoverflow.com/questions/1918785/how-to-lock-pages-in-memory-using-winapi/1918912#1918912 Comment by Paul Betts on How to lock pages in memory using WinAPI? Paul Betts 2009-12-17T01:39:21Z 2009-12-17T01:39:21Z Can you elaborate? Maybe we can give you a better answer if you describe the scenario more... http://stackoverflow.com/questions/1906533/finding-wndproc-address/1906735#1906735 Comment by Paul Betts on Finding WndProc Address Paul Betts 2009-12-17T01:37:06Z 2009-12-17T01:37:06Z Keep in mind that if you're getting back an address from another process, it is meaningless within <i>your</i> process unless you map their memory into your address space. http://stackoverflow.com/questions/1895205/gdb-cant-load-dll/1895224#1895224 Comment by Paul Betts on GDB can't load dll Paul Betts 2009-12-14T21:25:16Z 2009-12-14T21:25:16Z Because if GDB didn't understand ASLR, it'd look for a DLL at the original base address, then wouldn't find it because ASLR would've moved it. Like I said, it's a shot in the dark - I'd ask the mingw mailing list for a better answer though. http://stackoverflow.com/questions/1798600/mvvm-what-is-the-ideal-way-for-usercontrols-to-talk-to-each-other/1798626#1798626 Comment by Paul Betts on MVVM - what is the ideal way for usercontrols to talk to each other Paul Betts 2009-12-11T22:21:34Z 2009-12-11T22:21:34Z Great post, I'll have to read this! http://stackoverflow.com/questions/1875247/cross-compile-from-opensolaris-to-windows/1875304#1875304 Comment by Paul Betts on Cross-compile from (open)Solaris to Windows? Paul Betts 2009-12-09T17:45:33Z 2009-12-09T17:45:33Z Interesting - I'd heard that this existed, but it was a hacky patchset and wasn't usable. Has this changed? http://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115 Comment by Paul Betts on How can C++/CLI make this situation easier? Paul Betts 2009-12-09T17:10:54Z 2009-12-09T17:10:54Z @David If you've got the library's PDBs, that should be good enough http://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115 Comment by Paul Betts on How can C++/CLI make this situation easier? Paul Betts 2009-12-09T17:04:07Z 2009-12-09T17:04:07Z @Pavel Hmmm, I suppose you may be right, I'm used to seeing those as wchar_t's @David: Now's the time where I would bust out WinDbg - set a breakpoint on the native function and check the structs/params passed into it. Of course, if you don't know WinDbg this might be too tricky :( Attach a native VS debugger perhaps? (i.e. just run the app, then &quot;Attach&quot; from the DLL's VS project) http://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115 Comment by Paul Betts on How can C++/CLI make this situation easier? Paul Betts 2009-12-09T16:59:28Z 2009-12-09T16:59:28Z (Can't edit this, so adding a new one) - Yeah, your problem is <i>Definitely</i> the marshalling of those strings. You're declaring them as Unicode, so it's 2x the space, so you're overwriting the rest of the structure. 1 Char Unicode = 2 Chars ANSI. http://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115 Comment by Paul Betts on How can C++/CLI make this situation easier? Paul Betts 2009-12-09T16:56:36Z 2009-12-09T16:56:36Z How about CharSet.ASCII? http://stackoverflow.com/questions/1871602/how-do-i-make-that-dang-wpf-popup-go-away/1871632#1871632 Comment by Paul Betts on how do i make that dang wpf popup go away? Paul Betts 2009-12-09T05:05:19Z 2009-12-09T05:05:19Z So I'm not saying it's impossible, only that this behavior must be explicitly coded for - try expanding the ComboBox template using Blend