User Paul Betts - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T03:55:13Zhttp://stackoverflow.com/feeds/user/5728http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1919010/does-porting-count-as-derivative-work/1919021#19190211Answer by Paul Betts for Does porting count as derivative work?Paul Betts2009-12-17T01:55:48Z2009-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#19190133Answer by Paul Betts for [C#] Clearing a StringBuilder Object's Current StringPaul Betts2009-12-17T01:54:40Z2009-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#19189730Answer by Paul Betts for Which way to go with graphic-intense multi-touch app, XNA or WPF ?Paul Betts2009-12-17T01:43:48Z2009-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#19189670Answer by Paul Betts for FlowDocument contents as textPaul Betts2009-12-17T01:42:10Z2009-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#19189440Answer by Paul Betts for ntdll!kifastsystemcallretPaul Betts2009-12-17T01:34:13Z2009-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#19189270Answer by Paul Betts for way to implement IPCPaul Betts2009-12-17T01:31:03Z2009-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#19189121Answer by Paul Betts for How to lock pages in memory using WinAPI?Paul Betts2009-12-17T01:25:26Z2009-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#19188903Answer by Paul Betts for How can I get the DPI in WPF?Paul Betts2009-12-17T01:17:46Z2009-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#19036270Answer by Paul Betts for Why not call FreeLibrary from entry point function?Paul Betts2009-12-14T21:27:05Z2009-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#18952240Answer by Paul Betts for GDB can't load dllPaul Betts2009-12-13T00:50:47Z2009-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#18952220Answer by Paul Betts for Unzipping unfinished gzip...possible?Paul Betts2009-12-13T00:49:14Z2009-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#18753040Answer by Paul Betts for Cross-compile from (open)Solaris to Windows?Paul Betts2009-12-09T17:01:13Z2009-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#18751151Answer by Paul Betts for How can C++/CLI make this situation easier?Paul Betts2009-12-09T16:36:02Z2009-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#18716413Answer by Paul Betts for Reading .ppt (MS PowerPoint) file in Objective-CPaul Betts2009-12-09T04:49:42Z2009-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#18716320Answer by Paul Betts for how do i make that dang wpf popup go away?Paul Betts2009-12-09T04:45:29Z2009-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#18715835Answer by Paul Betts for Operation on different data typesPaul Betts2009-12-09T04:32:04Z2009-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#18715781Answer by Paul Betts for Hot get the name of an object?Paul Betts2009-12-09T04:30:04Z2009-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-server0Incrementing an Integer in SQL ServerPaul Betts2009-12-04T23:39:28Z2009-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#18167500Answer by Paul Betts for How to read a display name from a DLL?Paul Betts2009-11-29T20:58:25Z2009-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#18146611Answer by Paul Betts for Stream Audio from Linux Server with SilverlightPaul Betts2009-11-29T04:32:46Z2009-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#18146493Answer by Paul Betts for Run a program as a Service? Paul Betts2009-11-29T04:25:08Z2009-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#18107410Answer by Paul Betts for Hide controls in FlowDocumentReaderPaul Betts2009-11-27T21:53:06Z2009-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#17987680Answer by Paul Betts for Thin (ruby) is barfingPaul Betts2009-11-25T17:54:12Z2009-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#17987491Answer by Paul Betts for C++ message passing doubtsPaul Betts2009-11-25T17:51:53Z2009-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#17987361Answer by Paul Betts for x86 and x64 stack framesPaul Betts2009-11-25T17:49:59Z2009-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#17987162Answer by Paul Betts for How to handle this Multithread situation and don't lock?Paul Betts2009-11-25T17:46:34Z2009-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#17987023Answer by Paul Betts for How to access physical memory in linux from userspace ?Paul Betts2009-11-25T17:44:20Z2009-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#17986530Answer by Paul Betts for Bit Shifting, Masking or a Bit Field Struct?Paul Betts2009-11-25T17:36:24Z2009-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#17986261Answer by Paul Betts for MVVM - what is the ideal way for usercontrols to talk to each otherPaul Betts2009-11-25T17:34:14Z2009-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#17983911Answer by Paul Betts for Shutdown exception handling for Win32/C++Paul Betts2009-11-25T17:02:24Z2009-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#1918890Comment by Paul Betts on How can I get the DPI in WPF?Paul Betts2009-12-17T23:06:53Z2009-12-17T23:06:53Z@tom it's just [dpiX, dpiY] / 96.0http://stackoverflow.com/questions/1917650/disable-controlaltdelete-without-modifying-ginaComment by Paul Betts on Disable Control+Alt+Delete without modifying GINA?Paul Betts2009-12-17T04:22:51Z2009-12-17T04:22:51ZSeriously. Please don't ship anything that does this.http://stackoverflow.com/questions/1918877/how-can-i-get-the-dpi-in-wpfComment by Paul Betts on How can I get the DPI in WPF?Paul Betts2009-12-17T01:52:25Z2009-12-17T01:52:25ZDoes "SnapToDevicePixels" not work for you?http://stackoverflow.com/questions/1918877/how-can-i-get-the-dpi-in-wpf/1918890#1918890Comment by Paul Betts on How can I get the DPI in WPF?Paul Betts2009-12-17T01:51:40Z2009-12-17T01:51:40ZKeep in mind though that WPF units aren't pixels, they're device-independent @ 96DPI "pixelish-units"; 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#1918897Comment by Paul Betts on How can I have ifdefs in XAMLPaul Betts2009-12-17T01:40:04Z2009-12-17T01:40:04ZGreat solution, I like that syntaxhttp://stackoverflow.com/questions/1918785/how-to-lock-pages-in-memory-using-winapi/1918912#1918912Comment by Paul Betts on How to lock pages in memory using WinAPI?Paul Betts2009-12-17T01:39:21Z2009-12-17T01:39:21ZCan 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#1906735Comment by Paul Betts on Finding WndProc AddressPaul Betts2009-12-17T01:37:06Z2009-12-17T01:37:06ZKeep 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#1895224Comment by Paul Betts on GDB can't load dllPaul Betts2009-12-14T21:25:16Z2009-12-14T21:25:16ZBecause 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#1798626Comment by Paul Betts on MVVM - what is the ideal way for usercontrols to talk to each otherPaul Betts2009-12-11T22:21:34Z2009-12-11T22:21:34ZGreat post, I'll have to read this!http://stackoverflow.com/questions/1875247/cross-compile-from-opensolaris-to-windows/1875304#1875304Comment by Paul Betts on Cross-compile from (open)Solaris to Windows?Paul Betts2009-12-09T17:45:33Z2009-12-09T17:45:33ZInteresting - 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#1875115Comment by Paul Betts on How can C++/CLI make this situation easier?Paul Betts2009-12-09T17:10:54Z2009-12-09T17:10:54Z@David If you've got the library's PDBs, that should be good enoughhttp://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115Comment by Paul Betts on How can C++/CLI make this situation easier?Paul Betts2009-12-09T17:04:07Z2009-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 "Attach" from the DLL's VS project)http://stackoverflow.com/questions/1875088/how-can-c-cli-make-this-situation-easier/1875115#1875115Comment by Paul Betts on How can C++/CLI make this situation easier?Paul Betts2009-12-09T16:59:28Z2009-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#1875115Comment by Paul Betts on How can C++/CLI make this situation easier?Paul Betts2009-12-09T16:56:36Z2009-12-09T16:56:36ZHow about CharSet.ASCII?http://stackoverflow.com/questions/1871602/how-do-i-make-that-dang-wpf-popup-go-away/1871632#1871632Comment by Paul Betts on how do i make that dang wpf popup go away?Paul Betts2009-12-09T05:05:19Z2009-12-09T05:05:19ZSo I'm not saying it's impossible, only that this behavior must be explicitly coded for - try expanding the ComboBox template using Blend