User divo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T21:58:15Z http://stackoverflow.com/feeds/user/40347 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/772388/c-how-can-i-test-a-file-is-a-jpeg/772492#772492 23 Answer by divo for C# How can I test a file is a jpeg? divo 2009-04-21T13:06:25Z 2009-12-14T17:28:41Z <p>Several options:</p> <p>You can check for the file extension:</p> <pre><code>static bool HasJpegExtension(string filename) { // add other possible extensions here return Path.GetExtension(filename).Equals(".jpg", StringComparison.InvariantCultureIgnoreCase) || Path.GetExtension(filename).Equals(".jpeg", StringComparison.InvariantCultureIgnoreCase); } </code></pre> <p>or check for the correct <a href="http://www.obrador.com/essentialjpeg/headerinfo.htm" rel="nofollow">magic number</a> in the header of the file:</p> <pre><code>static bool HasJpegHeader(string filename) { using (BinaryReader br = new BinaryReader(File.Open(filename, FileMode.Open))) { UInt16 soi = br.ReadUInt16(); // Start of Image (SOI) marker (FFD8) UInt16 jfif = br.ReadUInt16(); // JFIF marker (FFE0) return soi == 0xd8ff &amp;&amp; jfif == 0xe0ff; } } </code></pre> <p>Another option would be to load the image and check for the correct type. However, this is less efficient (unless you are going to load the image anyway) but will probably give you the most reliable result (Be aware of the additional cost of loading and decompression as well as possible exception handling):</p> <pre><code>static bool IsJpegImage(string filename) { try { System.Drawing.Image img = System.Drawing.Image.FromFile(filename); // Two image formats can be compared using the Equals method // See http://msdn.microsoft.com/en-us/library/system.drawing.imaging.imageformat.aspx // return img.RawFormat.Equals(System.Drawing.Imaging.ImageFormat.Jpeg); } catch (OutOfMemoryException) { // Image.FromFile throws an OutOfMemoryException // if the file does not have a valid image format or // GDI+ does not support the pixel format of the file. // return false; } } </code></pre> http://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture 1 WPF: How to prevent a control from stealing a key gesture? divo 2009-12-14T11:47:47Z 2009-12-14T13:25:59Z <p>In my WPF application I would like to attach an input gesture to a command so that the input gesture is globally available in the main window, no matter which control has the focus.</p> <p>In my case I would like to bind <code>Key.PageDown</code> to a command, however, as soon as certain controls receive the focus (e.g. a TextBox or TreeView control), these controls receive the key events and the command is no longer triggered. These controls have no specific <code>CommandBindings</code> or <code>InputBindings</code> defined.</p> <p>This is how I define my input gesture:</p> <p>XAML:</p> <pre><code>&lt;Window x:Class="Window1" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Window1" Height="300" Width="300" &gt; &lt;StackPanel&gt; &lt;TreeView&gt; &lt;TreeViewItem Header="1"&gt; &lt;TreeViewItem Header="1.1"&gt;&lt;/TreeViewItem&gt; &lt;TreeViewItem Header="1.2"&gt;&lt;/TreeViewItem&gt; &lt;/TreeViewItem&gt; &lt;TreeViewItem Header="2" &gt;&lt;/TreeViewItem&gt; &lt;/TreeView&gt; &lt;TextBox /&gt; &lt;Label Name="label1" /&gt; &lt;/StackPanel&gt; &lt;/Window&gt; </code></pre> <p>Code:</p> <pre><code>using System; using System.Windows; using System.Windows.Input; public static class Commands { private static RoutedUICommand _myCommand; static Commands() { _myCommand = new RoutedUICommand("My Command", "My Command", typeof(Commands), new InputGestureCollection() { new KeyGesture(Key.PageDown, ModifierKeys.None) }); } public static ICommand MyCommand { get { return _myCommand; } } } public partial class Window1 : Window { public Window1() { InitializeComponent(); CommandBinding cb = new CommandBinding(); cb.Command = Commands.MyCommand; cb.Executed += new ExecutedRoutedEventHandler(cb_Executed); cb.CanExecute += new CanExecuteRoutedEventHandler(cb_CanExecute); this.CommandBindings.Add(cb); } void cb_CanExecute(object sender, CanExecuteRoutedEventArgs e) { e.CanExecute = true; } void cb_Executed(object sender, ExecutedRoutedEventArgs e) { this.label1.Content = string.Format("My Command was executed {0}", DateTime.Now); } } </code></pre> <p>I already tried catching the window's <code>PreviewKeyDown</code> event and marking it as handled This had not the desired effect. I also set the <code>Focusable</code> property to <code>false</code>. This helped for TextBox controls, but not for the TreeView (and has the unwanted effect, that the TextBox no longer can be edited so it is not a solution for me).</p> <p>So my question is how can I define a keyboard shortcut that works everywhere in the main window?</p> http://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture/1900674#1900674 0 Answer by divo for WPF: How to prevent a control from stealing a key gesture? divo 2009-12-14T12:36:07Z 2009-12-14T13:25:59Z <p>The following workaround seems to have the desired effect of having the command global to the window; however, I still wonder whether there is no easier way to do this in WPF:</p> <pre><code>private void Window_PreviewKeyDown(object sender, KeyEventArgs e) { foreach (InputBinding inputBinding in this.InputBindings) { KeyGesture keyGesture = inputBinding.Gesture as KeyGesture; if (keyGesture != null &amp;&amp; keyGesture.Key == e.Key &amp;&amp; keyGesture.Modifiers == Keyboard.Modifiers) { if (inputBinding.Command != null) { inputBinding.Command.Execute(0); e.Handled = true; } } } foreach (CommandBinding cb in this.CommandBindings) { RoutedCommand command = cb.Command as RoutedCommand; if (command != null) { foreach (InputGesture inputGesture in command.InputGestures) { KeyGesture keyGesture = inputGesture as KeyGesture; if (keyGesture != null &amp;&amp; keyGesture.Key == e.Key &amp;&amp; keyGesture.Modifiers == Keyboard.Modifiers) { command.Execute(0, this); e.Handled = true; } } } } } </code></pre> <p>}</p> http://stackoverflow.com/questions/1872470/script-to-open-executables-and-snap-to-top-left-hand-corner-of-desktop/1872885#1872885 1 Answer by divo for Script to open executables and snap to top left hand corner of desktop divo 2009-12-09T10:09:08Z 2009-12-09T10:30:11Z <p>There is no direct way to position a Window from the Windows command prompt. You basically have the following options:</p> <ul> <li><p>Use a GUI automation tool, e.g. <a href="http://www.autohotkey.com/" rel="nofollow"><strong>AutoHotkey</strong></a> which lets you script window actions. AutoHotkey e.g. offers the <a href="http://www.autohotkey.com/docs/commands/WinMove.htm" rel="nofollow"><strong>WinMove</strong></a> command:</p> <pre><code>Run, calc.exe WinWait, Calculator WinMove, 0, 0 ; Move the window found by WinWait to the upper-left corner of the screen. </code></pre></li> <li><p>Use PowerShell, e.g. with the WASP snapin (<a href="http://wasp.codeplex.com/" rel="nofollow">http://wasp.codeplex.com/</a>).</p></li> <li><p>Write a short program in C/C++/.NET that will position the active Window at position 0,0 of your main screen. </p></li> </ul> <p>A very basic program in C#, that takes a window caption as parameter could look like that:</p> <pre><code>using System; using System.Runtime.InteropServices; class Program { public const int SWP_NOSIZE = 0x0001; public const int SWP_NOZORDER = 0x0004; [DllImport("user32.dll", SetLastError = true)] private static extern bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int x, int y, int cx, int cy, uint uFlags); [DllImport("user32.dll", SetLastError = true)] static extern IntPtr FindWindow(string lpClassName, string lpWindowName); static void Main(string[] args) { IntPtr handle = FindWindow(null, args[0]); SetWindowPos(handle, IntPtr.Zero, 0, 0, 0, 0, SWP_NOSIZE | SWP_NOZORDER); } } </code></pre> http://stackoverflow.com/questions/1846136/xslt-intellisense-in-visual-studio-2008/1846152#1846152 0 Answer by divo for XSLT Intellisense in Visual Studio 2008 divo 2009-12-04T10:37:41Z 2009-12-04T10:37:41Z <p>XSLT Intellisense is a hidden feature of VS 2008. It has to be enabled by setting a Registry key (<a href="http://memoryleak.me.uk/2008/11/xslt-intellisense-in-visual-studio-2008.html" rel="nofollow">http://memoryleak.me.uk/2008/11/xslt-intellisense-in-visual-studio-2008.html</a>):</p> <blockquote> <p>First, make sure you have the xslt.xsd file in the C:\Program Files\Microsoft Visual Studio 9.0\Xml\Schemas folder. If not, copy it from VS2005.</p> <p>Next, add a new string value to the registry named <code>XsltIntellisense</code> under <code>HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\XmlEditor</code> and set the value to <code>True</code>. This will enable some other nice features to the standard tag completion stuff.</p> </blockquote> <p>This hint came originally from <a href="http://www.tkachenko.com/blog/archives/000740.html" rel="nofollow">http://www.tkachenko.com/blog/archives/000740.html</a></p> http://stackoverflow.com/questions/1807794/how-to-capture-the-pid-of-a-process-when-launching-it-in-dos/1807888#1807888 0 Answer by divo for How to capture the PID of a process when launching it in DOS divo 2009-11-27T10:17:31Z 2009-11-27T10:29:12Z <p>I think you can't do that with simple command line utilities, as IE actually spawns child processes for each tab, i.e. if IE is not yet running you would get one parent IE process and a child process for the tab, and if IE is already running you would simply get a single child process. </p> <p>It will be even quite tricky when you write your own tool to kill IE because when you kill a child (tab) process, IE will automatically recover this tab.</p> <p>See also this related question: <a href="http://stackoverflow.com/questions/1568093/how-to-obtain-process-of-newly-created-ie8-window">http://stackoverflow.com/questions/1568093/how-to-obtain-process-of-newly-created-ie8-window</a> (though there is no good answer there).</p> http://stackoverflow.com/questions/1793565/in-xslt-1-0-how-can-i-access-attributes-of-a-particular-xml-element-when-it-is-o/1793594#1793594 3 Answer by divo for In XSLT 1.0, how can I access attributes of a particular XML element when it is one of multiple elements with the same name? divo 2009-11-24T23:11:53Z 2009-11-24T23:11:53Z <pre><code>&lt;xsl:value-of select="//PARAM[@name='client']/@value" /&gt; </code></pre> <p>You didn't add the complete XML document. In case there is a default namespace involved you will have to declare a prefix that you want to use and prepend that to the element and attribute names respectively.</p> http://stackoverflow.com/questions/1715695/net-windows-service-getting-stopped-abruptly/1715750#1715750 2 Answer by divo for .NET windows service getting stopped abruptly divo 2009-11-11T15:03:39Z 2009-11-11T15:03:39Z <p>Probably one of your threads is throwing an <strong>unhandled exception</strong>. This will let your process die immediately. Make sure that you handle any exception inside your threads at some point by wrapping the code inside the thread into try-catch-blocks (and don't forget to log properly so that you can be aware of the things that go wrong).</p> http://stackoverflow.com/questions/1649512/xml-file-with-imbedded-image-data-or-zip-file-with-xml-separate-image-files/1649599#1649599 3 Answer by divo for XML file with imbedded image data or ZIP file with XML + separate image files divo 2009-10-30T12:42:04Z 2009-10-30T12:42:04Z <p>Using the <a href="http://en.wikipedia.org/wiki/Open%5FPackaging%5FConventions" rel="nofollow">Open Packaging Conventions</a> and the Open XML SDK<sup>1</sup> as suggested by Nestor would be one option but you could also easily roll your own version of such a format.</p> <p>In general I would prefer the zipped option as the file size would be significant smaller. XML can be compressed very well and the images won't be expanded. </p> <p>When using a single XML file with embedded images you would have to use base64 encoding to save your images. The size of the encoded images will be about <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">1.37 times larger</a> than the original size.</p> <p>However, a single XML file might have advantages regarding further processing of the document, for example you can use it without additional unzip directly as input document for an XSL transform.</p> <p><sup>1</sup>The OpenXML format is a good example in this matter. Normally, files are stored in a zip package fulfilling the Open Packaging Conventions. However, there is also a single XML file version available, the <a href="http://blogs.msdn.com/ericwhite/archive/2008/09/29/the-flat-opc-format.aspx" rel="nofollow">so-called Flat OPC format</a> (at least in Word 2007) to be used as input/output format for XSLT and other document processing steps.</p> http://stackoverflow.com/questions/1647456/what-does-it-mean-to-call-a-java-method-using-new-in-a-statement/1647466#1647466 5 Answer by divo for What does it mean to call a Java method using "new" in a statement? divo 2009-10-30T00:57:13Z 2009-10-30T00:57:13Z <p><code>myFunction</code> is an instance method that belongs to the type <code>Main</code>. What your code does is that it first creates a new instance of type <code>Main</code> (i.e. <code>new Main()</code>) and then invokes the method <code>myFunction</code> on that instance.</p> <p>A more verbose version of your code would be:</p> <pre><code>Main mainObj = new Main(); mainObj.myFunction(); </code></pre> http://stackoverflow.com/questions/1645377/stackoverflow-when-hosted-as-wcf-works-fine-in-console-app/1645460#1645460 2 Answer by divo for StackOverflow when hosted as WCF - works fine in Console app divo 2009-10-29T17:51:49Z 2009-10-29T18:12:04Z <p>A stack overflow occurs when your stack size reaches the defined limit and no more elements can be placed on the stack. The default stack size in Windows is normally 1 MB and has nothing to do with the total memory available to a process (therefore looking at the memory used by w3wp.exe makes not much sense in your case).</p> <p>It is possible to increase the stack size of an executable. From a Visual Studio command prompt you can issue</p> <pre><code>editbin /STACK:4000000 w3wp.exe </code></pre> <p>to increase the stack size to 4 MB.</p> <p>However, it could also be the case that the stack overflow is caused by a problem in the code (typically an <strong>infinite recursion</strong>) which would only occur when hosted as a WCF service.</p> <p>To trace this problem down, you need to find out where the recursion occurs. If you can't get a stack trace intensive logging will help you here.</p> <p><strong>UPDATE</strong></p> <p>As it seems, w3wp.exe does not use Window's default stack size of 1 MB but uses only 256 kB (see also this <a href="http://support.microsoft.com/kb/932909" rel="nofollow">knowledge base article</a>):</p> <pre><code>dumpbin /HEADERS c:\windows\system32\inetsrv\w3wp.exe </code></pre> <p>prints: </p> <blockquote> <pre><code>[...] OPTIONAL HEADER VALUES [...] 40000 size of stack reserve </code></pre> </blockquote> <p>A <a href="http://blogs.msdn.com/tom/archive/2008/03/31/stack-sizes-in-iis-affects-asp-net.aspx" rel="nofollow">blog post</a> suggest to patch w3wp.exe using <code>editbin</code> as described above.</p> http://stackoverflow.com/questions/1643088/throwing-faultexceptiont-from-worker-thread-crashes-wcf/1643140#1643140 0 Answer by divo for Throwing FaultException<T> from worker thread crashes WCF divo 2009-10-29T11:41:55Z 2009-10-29T11:51:24Z <p>The simplest way would be to wrap the call in a try-catch block and log the exception:</p> <pre><code>var thread = new Thread(new ThreadStart( delegate { try { new Killbot().KillAllHumans(); // Throws a FaultException } catch (Exception ex) { System.Diagnostics.Trace.WriteLine(ex.ToString()); } })); </code></pre> <p>If you want to handle the exception in your main thread you would have to use <code>BeginInvoke</code> and <code>EndInvoke</code> in combination with an <code>AsyncCallback</code>.</p> http://stackoverflow.com/questions/1636368/c-xpath-question-how-to-get-nodes-under-a-specified-parent-node/1636417#1636417 1 Answer by divo for C# - XPath-Question: How to get Nodes under a specified parent-node? divo 2009-10-28T10:33:23Z 2009-10-28T14:28:57Z <p>Without seeing a sample document and the desired output it is a bit difficult to see what you actually want, but normally you would just use a single XPath expression which also includes the parent:</p> <pre><code>"//member[name='participantOne']/member[name='name']" </code></pre> <p>If this doesn't do what you want you could edit your question to include sample input and output.</p> <p>Actually your last sentence is a little bit confusing: Is the parent node's name <code>participantOne</code>? And the child node's name is <code>name</code>? Then you could simply write:</p> <pre><code>"//participantOne/name" </code></pre> <p><strong>Update</strong></p> <p>As the member[name='participantOne'] node is not a direct parent but an acestor you would have to use </p> <pre><code>//member[name='participantOne']//member[name='name'] </code></pre> <p>as your XPath expression.</p> http://stackoverflow.com/questions/1626132/how-do-you-version-service-pack-or-hot-fix/1626193#1626193 1 Answer by divo for How do you version service pack or hot fix? divo 2009-10-26T17:36:41Z 2009-10-26T17:36:41Z <p>A reason to leave the version number unchanged is in relation with strong-named assemblies. </p> <p>If you want to allow an already compiled application to use your updated strong-named assembly you may not change the version number as the application will require the same version of your assembly that it was compiled against.</p> <p>This of course only holds if the assembly's interfaces are not modified.</p> http://stackoverflow.com/questions/1625841/write-batch-file-to-read-a-number-from-a-text-file-and-execute-the-command-with-t/1625902#1625902 0 Answer by divo for Write batch file to read a number from a text file and execute the command with that number divo 2009-10-26T16:51:20Z 2009-10-26T16:51:20Z <p>You can use the <a href="http://technet.microsoft.com/en-us/library/bb490909.aspx" rel="nofollow"><strong><code>for</code></strong></a> command:</p> <pre><code>for /F %F in (test.txt) do echo %F </code></pre> <p>will print each line in file test.txt to the console.</p> http://stackoverflow.com/questions/1625430/intellisense-broken-after-installing-coderush-devexpress/1625478#1625478 0 Answer by divo for Intellisense broken after installing CodeRush Devexpress divo 2009-10-26T15:28:08Z 2009-10-26T15:28:08Z <p>Does it work again if you temporarily disable CodeRush, e.g. using the <code>/SafeMode</code> command line switch?</p> http://stackoverflow.com/questions/1622457/is-it-possible-to-see-the-data-of-a-post-request-in-firefox-or-chrome/1622563#1622563 1 Answer by divo for Is it possible to see the data of a post request in Firefox or Chrome? divo 2009-10-26T00:07:01Z 2009-10-26T00:43:25Z <p>For Firefox there is also <a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow"><strong>TamperData</strong></a>, and even more powerful and cross-browser is <a href="http://Fiddler" rel="nofollow"><strong>Fiddler</strong></a>.</p> http://stackoverflow.com/questions/1621758/on-some-computers-application-cant-load-sqlite-dll-file/1621789#1621789 1 Answer by divo for On some computers application can't load sqlite dll file divo 2009-10-25T19:20:27Z 2009-10-25T19:20:27Z <p>Have you checked whether the target system is 64-bit or 32-bit?</p> <p>It might be that one of your dependencies requires a 32-bit version of Windows. To solve the issue you can specify a platform target in the properties of your C# project: Choose x86 instead of Any CPU.</p> http://stackoverflow.com/questions/1612721/open-xml-sdk-2-0-inserting-pdf-to-word/1613113#1613113 1 Answer by divo for Open XML SDK 2.0 inserting PDF to Word divo 2009-10-23T12:27:24Z 2009-10-23T12:27:24Z <p>With the SDK there is a tool called <strong><em>DocumentReflector</em></strong> (in folder <em>C:\Program Files\Open XML Format SDK\V2.0\tools</em>). This tool opens an existing OpenXML document and generates the code that will produce this document. </p> <p>Now you can create a simple document in Word with an embedded PDF and open this document using DocumentReflector. The code generated can then be a base for your document creation process.</p> http://stackoverflow.com/questions/1607731/options-for-automating-microsoft-word-2007-document-creation/1607771#1607771 2 Answer by divo for Options for automating Microsoft Word 2007 document creation divo 2009-10-22T14:47:05Z 2009-10-22T14:52:18Z <p>Have a look at Microsoft's <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=c6e744e5-36e9-45f5-8d8c-331df206e0d0&amp;DisplayLang=en" rel="nofollow"><strong>Office OpenXML SDK</strong></a>. It allows you to create Word 2007 (.docx) documents programmatically without the Office applications.</p> <p>To use it you will need to be familiar with the OpenXML file format. A good starting point also providing examples are the blogs of <a href="http://blogs.msdn.com/brian%5Fjones/archive/2008/10/14/open-xml-sdk-2-0-architecture.aspx" rel="nofollow">Brian Jones</a> and <a href="http://blogs.msdn.com/erikaehrli/archive/2009/05/14/open-xml-format-sdk-2-0-getting-started-best-practices.aspx" rel="nofollow">Erika Ehrli</a>.</p> <p>This sample on CodeProject might also be a good start: <a href="http://www.codeproject.com/KB/office/OpenXML-SDK-HelloWorld.aspx" rel="nofollow">Creation of a Word 2007 document using the Open XML Format SDK</a>.</p> <p>I also recommend you to have a look at the DocumentReflector, a tool included within the SDK, that creates the code to produce a certain Word document based on an existing document.</p> http://stackoverflow.com/questions/1604330/applying-xml-to-xslt-help/1604381#1604381 3 Answer by divo for applying xml to xslt help divo 2009-10-22T00:23:05Z 2009-10-22T00:23:05Z <p>Your sample works for me. </p> <p>Please note that if the template matching <code>/</code> is simply doing an <code>xsl:apply-templates</code> on <code>dicom</code> you actually don't need it as there is already a built-in template that will be matched automatically doing exactly the same.</p> http://stackoverflow.com/questions/1582276/ms-excel-xml-format-accessing-with-ole-connection/1597759#1597759 1 Answer by divo for MS Excel XML format accessing with Ole connection divo 2009-10-20T22:56:25Z 2009-10-20T22:56:25Z <p>From your updated question it seems as if you are using Excel's HTML export (which embeds some sort of XML into the HTML head of the exported page that might be rendered by Internet Explorer. I think this format dates back to Excel 2000 and does not support data binding.</p> <p>Are you required to use such a format for legacy reasons? By now there are much better options, e.g. with the new XML-based <em>Office OpenXML</em> formats of Office 2007 or the <em>XML Spreadsheet 2003</em> format introduced by Excel 2003.</p> http://stackoverflow.com/questions/1595979/transfering-a-file-using-ftp/1596042#1596042 1 Answer by divo for Transfering a file using FTP divo 2009-10-20T17:08:31Z 2009-10-20T17:08:31Z <p>It would be better not to split the file but use a client and server that both support resuming file transfers. </p> http://stackoverflow.com/questions/1593326/xslt-transform-on-special-characters/1593447#1593447 0 Answer by divo for Xslt transform on special characters divo 2009-10-20T09:28:24Z 2009-10-20T11:10:54Z <p>If you have the choice to use .NET you can convert between an HTML-encoded and regular string using (this code requires a reference to System.Web):</p> <pre><code>string htmlEncodedText = System.Web.HttpUtility.HtmlEncode("T&amp;O"); string text = System.Web.HttpUtility.HtmlDecode(htmlEncodedText); </code></pre> <p><strong>Update</strong></p> <p>Since you need to do this in plain XSLT you can use <code>xsl:value-of</code> to decode the HTML encoding:</p> <pre><code>&lt;xsl:variable name="test"&gt; &lt;xsl:value-of select="'T&amp;amp;O'"/&gt; &lt;/xsl:variable&gt; </code></pre> <p>The variable <code>string($test)</code> will have the value <code>T&amp;O</code>. You can pass this variable as an argument to your extension function then.</p> http://stackoverflow.com/questions/1591490/is-there-any-way-for-a-net-application-to-read-a-variable-defined-at-instalation/1591652#1591652 2 Answer by divo for Is there any way for a .NET application to read a variable defined at instalation time? divo 2009-10-19T23:10:59Z 2009-10-19T23:10:59Z <p>The simplest way to do that would be to store the value in the Registry:</p> <ol> <li><p>Right-click your setup project and select <em>View -> User Interface</em></p></li> <li><p>Add a new dialog under <strong>Install</strong> and move it to the correct position within the sequence</p></li> <li><p>Each control in a dialog has a property called <em>Property</em>, e.g. <em>Edit1Property</em> or <em>ButtonProperty</em>. The name of this property should be some unique value, by default it will be something like <em>EDITA1</em>. We will use this property name later to refer to the value of the control.</p></li> <li><p>Right-click your setup project and select <em>View -> Registry</em></p></li> <li><p>Navigate to <code>HKCU\Software\[Manufacturer]</code> or to <code>HKCU\Software\[Manufacturer]</code> depending on whether you want to store this setting for the current user only or machine wide. You can also create a new entry under <em>User/machine hive</em>. Then the entry will be stored either under HKCU or under HKLM depending on whether the installation is per-user or per-machine.</p></li> <li><p>Create a new value under the key selected in 5. In the properties view of that value enter the property name of the control that has been specified in step 3. This name has to be in square bracket, for example <em>[EDITA1]</em> and you are done.</p></li> </ol> http://stackoverflow.com/questions/1591208/how-to-speed-up-serialization-code/1591480#1591480 1 Answer by divo for How to speed up serialization code? divo 2009-10-19T22:26:39Z 2009-10-19T22:26:39Z <p>This related question recommends <a href="http://stackoverflow.com/questions/852064/faster-deep-cloning/852082#852082"><strong>dynamic method serialization</strong></a>:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/852064/faster-deep-cloning"><strong>Faster deep cloning</strong></a></p> </blockquote> http://stackoverflow.com/questions/1591345/http-request-only-works-in-browser/1591453#1591453 0 Answer by divo for HTTP Request only works in browser divo 2009-10-19T22:20:56Z 2009-10-19T22:20:56Z <p>You already know the answer: When you are authenticated in a browser session you get the correct response. That means that you are not authenticated when using the <code>WebRequest</code>.</p> <p>The credentials that you provide are used for <a href="http://en.wikipedia.org/wiki/Basic%5Faccess%5Fauthentication" rel="nofollow">HTTP authentication</a> but your web site uses most likely some sort of HTML forms-based authentication.</p> <p>To solve the problem you will have to use the same authentication mechanism that the web application does. This might be cookie based or a session id might be transmitted as a POST or GET parameter along with each request. Without knowing further details about the web site it's difficult to provide more help though.</p> <p>The following question is related and most likely of help for you:</p> <blockquote> <p><a href="http://stackoverflow.com/questions/930807/c-login-to-website-via-program"><strong>C# Login to Website via program</strong></a></p> </blockquote> http://stackoverflow.com/questions/1588471/can-a-simple-program-be-responsible-for-a-bsod/1588560#1588560 4 Answer by divo for Can a simple program be responsible for a BSOD? divo 2009-10-19T13:02:19Z 2009-10-19T17:09:23Z <p>The easiest way to cause a BSOD with a user-space program is (afaik) to <a href="http://stackoverflow.com/questions/667581/simulating-a-bluescreen/667593#667593">kill the Windows subsystem process</a> (csrss.exe). This doesn't need faulty hardware nor a bug in the kernel or a driver, it only needs administrator privileges<sup>1</sup>.</p> <p>What is your code exactly doing? The error message ("A process or thread crucial to system operation has unexpectedly exited or been terminate.") sounds like one of the essential system processes terminated. Maybe you are killing a process and unintentionally got the wrong process?</p> <p>If somehow possible you could try to get a memory dump from that customer. Using the <strong>Debugging Tools for Windows</strong> you can then further analyze that dump as described <a href="http://usasma.vox.com/library/post/diagnosing-bsods-originally-posted-02oct08.html" rel="nofollow">here</a>.</p> <p><sup>1</sup>Windows doesn't prevent you from <a href="http://blogs.msdn.com/oldnewthing/archive/2008/10/14/8998849.aspx" rel="nofollow">doing so</a> because it <a href="http://blogs.msdn.com/oldnewthing/archive/2004/02/16/73780.aspx" rel="nofollow">"keeps administrators in control of their computer"</a>. So this is by design and not a bug. Read Raymond's articles and you will see why.</p> http://stackoverflow.com/questions/1588998/problem-with-saving-doc-as-xml/1589616#1589616 0 Answer by divo for Problem with saving .doc as .xml divo 2009-10-19T16:08:39Z 2009-10-19T16:08:39Z <p>Word has an option to control whethr RSID entries are saved with a document. This is a a hidden application option only accessible via the Word object model.</p> <p>To prevent that those ids are generated you can e.g. open the macro editor (Alt+F11) and execute the following code in the immediate window:</p> <pre><code>Application.Options.StoreRSIDOnSave = False </code></pre> <p>Without RSIDs all text having the same formatting will be contained in a single run (I think this is what you want to have).</p> <p>The RSIDs are used by Word to <a href="http://blogs.msdn.com/brian%5Fjones/archive/2006/12/11/what-s-up-with-all-those-rsids.aspx" rel="nofollow">automatically merge documents</a>; they don't contain essential information needed for preserving a documents layout so saving is optional (unless you need to be able to merge documents).</p> http://stackoverflow.com/questions/1583149/whats-the-net-replacement-for-file-type-filesystemobject-property/1583185#1583185 1 Answer by divo for What's the .Net replacement for File.Type FileSystemObject property? divo 2009-10-17T20:55:19Z 2009-10-17T20:55:19Z <p>I'm not aware of a method in the BCL, but you could easily read it from the Registry:</p> <pre><code>using System; using Microsoft.Win32; class Program { static void Main(string[] args) { string extension = ".txt"; string nicename = ""; using (RegistryKey key = Registry.ClassesRoot.OpenSubKey(extension)) { if (key != null) { string filetype = key.GetValue(null) as string; using (RegistryKey keyType = Registry.ClassesRoot.OpenSubKey(filetype)) { if (keyType != null) { nicename = keyType.GetValue(null) as string; } } } } Console.WriteLine(nicename); } } </code></pre> <p>However, the method used in the <a href="http://stackoverflow.com/questions/1437382/get-file-type-in-c">link</a> provided by Vladimir is to be preferred as it uses an API interface.</p> http://stackoverflow.com/questions/1904519/how-to-call-win32-createmutex-from-net Comment by divo on How to call win32 CreateMutex from .Net divo 2009-12-15T09:13:47Z 2009-12-15T09:13:47Z Does the .NET mutex work as expected if you set your platform target to 'x86'? What you are seeing could also be a 32/64-bit interop issue (just an idea since you mentioned COM). http://stackoverflow.com/questions/1904519/how-to-call-win32-createmutex-from-net Comment by divo on How to call win32 CreateMutex from .Net divo 2009-12-15T00:49:59Z 2009-12-15T00:49:59Z Are you on a 64-bit version of Windows 7? A .NET <code>Mutex</code> should basically work the same in Windows 7 as in previous versions. http://stackoverflow.com/questions/1904479/programmatically-suppressing-exceptions-in-c Comment by divo on Programmatically suppressing exceptions in C# divo 2009-12-15T00:30:35Z 2009-12-15T00:30:35Z This is a bad code smell. If you for whatever reason have to live with a framework, that only throws exceptions of the same type your code would do. But note that it is a difference whether you write <code>throw e;</code> or just <code>throw;</code> (normally you would want the latter). http://stackoverflow.com/questions/1871272/adding-a-section-to-the-to-do-bar-in-outlook-2007-2010 Comment by divo on Adding a section to the To-Do bar in Outlook 2007/2010? divo 2009-12-15T00:16:14Z 2009-12-15T00:16:14Z Where did you find the claim that customizing the To-Do bar is possible with Add-in Express? I wasn't able to find anything like that from the product description and as far as I know this is not possible. http://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture/1900674#1900674 Comment by divo on WPF: How to prevent a control from stealing a key gesture? divo 2009-12-14T12:49:43Z 2009-12-14T12:49:43Z Yes, I forgot about that, thanks for the tip :-) http://stackoverflow.com/questions/1900524/converting-file-from-ods-to-xls-file Comment by divo on converting file from .ods to xls file divo 2009-12-14T12:09:15Z 2009-12-14T12:09:15Z You should get an understanding that renaming your file will not change the format. You will have to use a converter to actually change the format of your file. There are several converters available, which one to choose will depend on your use case. http://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture/1900486#1900486 Comment by divo on WPF: How to prevent a control from stealing a key gesture? divo 2009-12-14T12:06:14Z 2009-12-14T12:06:14Z P.S.: Does that mean that I cannot use <code>InputGestures</code> on my commands at all but rather have to switch/case on the key events in <code>PreviewKeyDown</code> manually? I was hoping that it is possible to avoid that in WPF... http://stackoverflow.com/questions/1900450/wpf-how-to-prevent-a-control-from-stealing-a-key-gesture/1900486#1900486 Comment by divo on WPF: How to prevent a control from stealing a key gesture? divo 2009-12-14T12:01:00Z 2009-12-14T12:01:00Z That's what I tried. But then the key gesture is also filtered and not passed to the window. http://stackoverflow.com/questions/1070863/hidden-features-of-vba/1070942#1070942 Comment by divo on Hidden features of VBA divo 2009-12-13T20:07:36Z 2009-12-13T20:07:36Z @Kuyenda: The space is inserted automatically by the VBA-IDE when the code is compiled. How did you run the <code>Bar(str)</code> version? http://stackoverflow.com/questions/1874800/visual-studio-2010-beta-2-crashes-creating-or-opening-a-solution Comment by divo on Visual Studio 2010 beta 2 crashes creating or opening a solution divo 2009-12-09T15:54:23Z 2009-12-09T15:54:23Z You should probably report that problem at <a href="http://connect.microsoft.com" rel="nofollow">connect.microsoft.com</a> http://stackoverflow.com/questions/1874488/are-the-setvalue-getvalue-methods-of-system-array-thread-safe/1874596#1874596 Comment by divo on Are the SetValue/GetValue methods of System.Array thread-safe? divo 2009-12-09T15:38:21Z 2009-12-09T15:38:21Z So it's not thread-safe in general, but how about the specific scenario with each thread accessing only a separate part of the array? http://stackoverflow.com/questions/1874488/are-the-setvalue-getvalue-methods-of-system-array-thread-safe Comment by divo on Are the SetValue/GetValue methods of System.Array thread-safe? divo 2009-12-09T15:31:10Z 2009-12-09T15:31:10Z A good read about what &quot;thread-safe&quot; actually means by Eric Lippert: <a href="http://blogs.msdn.com/ericlippert/archive/2009/10/19/what-is-this-thing-you-call-thread-safe.aspx" rel="nofollow">blogs.msdn.com/ericlippert/archive/&hellip;</a> http://stackoverflow.com/questions/1872470/script-to-open-executables-and-snap-to-top-left-hand-corner-of-desktop/1872496#1872496 Comment by divo on Script to open executables and snap to top left hand corner of desktop divo 2009-12-09T10:31:32Z 2009-12-09T10:31:32Z cmd will also be started maximized by this command. http://stackoverflow.com/questions/1872904/command-line-switches-work-differently-in-xp-compared-to-server-2008 Comment by divo on Command line switches work differently in XP compared to Server 2008? divo 2009-12-09T10:17:13Z 2009-12-09T10:17:13Z As the command line is not parsed by the environment but rather by each program on its own, you will have to show the source code of &quot;foocommand&quot; to be able to explain what is going on. http://stackoverflow.com/questions/1872470/script-to-open-executables-and-snap-to-top-left-hand-corner-of-desktop/1872496#1872496 Comment by divo on Script to open executables and snap to top left hand corner of desktop divo 2009-12-09T09:15:36Z 2009-12-09T09:15:36Z That will start the window maximized. What the OP wants is a window snapped to the top left corner of the screen.