User Factor Mystic - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T02:26:18Zhttp://stackoverflow.com/feeds/user/1569http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1807742/how-to-programmatically-create-a-file-association-that-works-in-xp-vista-and-win/1810243#18102430Answer by Factor Mystic for How to programmatically create a file association that works in XP, Vista and Windows 7Factor Mystic2009-11-27T19:00:05Z2009-11-27T19:00:05Z<p>There were only a couple changes from XP to Vista/7 as far as file association goes, so most examples for XP should still work. The only think you should be concerned about is the 'Default Programs' setting in Vista/7 that did't exist in XP and overrides other file association registration. </p>
http://stackoverflow.com/questions/1720710/register-file-extension-in-window-registry/1723951#17239510Answer by Factor Mystic for Register file extension in window registry?Factor Mystic2009-11-12T17:26:27Z2009-11-12T17:26:27Z<p><code>%L</code> is the "<a href="http://en.wikipedia.org/wiki/Long%5Ffilename" rel="nofollow">long name</a>" of the file who's association has invoked your program. On modern operating systems it's identical to <code>%1</code> (<a href="http://en.wikipedia.org/wiki/8.3%5Ffilename" rel="nofollow">short name</a>).</p>
http://stackoverflow.com/questions/257587/bring-a-window-to-the-front-in-wpf3Bring a window to the front in WPFFactor Mystic2008-11-02T23:42:59Z2009-10-14T09:29:00Z
<p>How can I bring my WPF application to the front of the desktop? So far I've tried:</p>
<p><code>SwitchToThisWindow(new WindowInteropHelper(Application.Current.MainWindow).Handle, true);</code></p>
<p><code>SetWindowPos(new WindowInteropHelper(Application.Current.MainWindow).Handle, IntPtr.Zero, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);</code></p>
<p><code>SetForegroundWindow(new WindowInteropHelper(Application.Current.MainWindow).Handle);</code></p>
<p>None of which are doing the job (<code>Marshal.GetLastWin32Error()</code> is saying these operations completed successfully, and the P/Invoke attributes for each definition do have <code>SetLastError=true</code>).</p>
<p>If I create a new blank WPF application, and call <code>SwitchToThisWindow</code> with a timer, it works exactly as expected, so I'm not sure why it's not working in my original case.</p>
<p><strong>Edit</strong>: I'm doing this in conjunction with a global hotkey.</p>
http://stackoverflow.com/questions/1556853/associating-file-extensions-with-a-program/1557440#15574403Answer by Factor Mystic for Associating file extensions with a programFactor Mystic2009-10-12T23:12:39Z2009-10-12T23:23:50Z<p>For brevity, I'm using a fake root key. In practice, replace <code>Hive_Key</code> with <code>HKEY_LOCAL_MACHINE</code> for system default settings, or <code>HKEY_CURRENT_USER</code> for per-user settings. Either of these keys are allowed to exist, or both. If they both exist, the <code>HKCU</code> key takes precedence.</p>
<p>To associate an extension with a file type, you need to set the default value of the extension key (<code>Hive_Key\Software\Classes\.ext</code>) with a chosen file type, by setting the default key value.</p>
<p>The actual program launched, as well as other file type details, are found in the file type. File types are noted by what is referred to as a <code>ProgID</code> (short for "Programmatic Identifier", which is a more easily readable version of a Class Identifier). ProgID keys are found in <code>Hive_Key\Software\Classes</code>, and an example value for this illustration might be <code>ext_auto_key</code>.</p>
<p>The ProgID may have a default value, which will be the friendly description of the file type in Explorer (such as, "Microsoft Word Document"). It's up to you to make sure you choose a description that's easily understandable for users.</p>
<p>The ProgID may have a subkey, <code>DefaultIcon</code>, which is where the file type icon is stored. That icon path is the default value of that key.</p>
<p>The ProgID key may a subkey, <code>shell</code>, which will contain the context menu items on the files, and the program that that context menu item will invoke. Similar to the default value of the ProgID, the default value of the verb key is the text which will show up on the context menu. The default value of this <code>shell</code> key has the default verb key name, which is the verb invoked when the user double clicks a file.</p>
<p>These context menu items are <code>Verbs</code>. For our example, a verb that opens the file with Notepad would look like this:
<code>Hive_Key\Software\Classes\ext_auto_file\shell\open\command</code> with default value <code>notepad.exe %1</code>.</p>
<p>This is where you would put your program path. If your program is in the system PATH, as notepad.exe is, you don't <em>need</em> to specify the full path. In the more likely case, you'd need to specify the path to your exe. For testing purposes, you can just set it to be your build directory.</p>
<p>You asked how to check this stuff, and this can be done by first inspecting the default value of the extension key to get the ProgID, then inspecting the <code>shell</code> subkey of the ProgID key to get default verb, then inspecting <code>\shell\verb\command</code> to get the path to the program launched.</p>
<p>It might be enlightening to open <code>regedit.exe</code> and browse those registry keys for other file types to get a better idea of how it all works.</p>
<p>Also, the above is all valid if the particular extension is not under control of a program set as default (Default Programs) in the Control Panel. You can check this status by checking of the existence of the key <code>HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ Explorer\FileExts\.EXT\UserChoice</code>. If it is, you will need to revoke Default Programs control before your customizations will go into effect. This can be done by deleting that <code>UserChoice</code> subkey.</p>
http://stackoverflow.com/questions/1485262/add-shortcut-to-my-program-when-right-click/1488034#14880340Answer by Factor Mystic for add shortcut to my program when right clickFactor Mystic2009-09-28T16:33:49Z2009-09-29T16:53:37Z<p>You're going to want to determine the file type (ProgID) of .doc files. You can find this in <code>HKEY_CURRENT_USER\Software\Classes\.doc</code> (it is the default value).</p>
<p>Then add the key <code>HKEY_CURRENT_USER\Software\Classes\<ProgID>\shell\NewMenuOption\command</code>, where the default value is the path to your program.</p>
<p>You can do all this with <code>Registry.SetValue</code> and <code>GetValue</code>.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/cc144171%28VS.85%29.aspx" rel="nofollow">Check out this msdn page to get started.</a></p>
<p>Edit: Additional info, the difference between hive keys:</p>
<p><code>HKEY_LOCAL_MACHINE\Software\Classes</code> and <code>HKEY_CURRENT_USER\Software\Classes</code> are similar, but HKLM is for system defaults/all user settings, and HKCU is for per user settings. Per user settings don't require elevated privileges, so you can write your context menu keys as a regular user with no pain.</p>
<p><code>HKEY_CLASSES_ROOT</code> is a view combining <code>HKEY_LOCAL_MACHINE\Software\Classes</code> and <code>HKEY_CURRENT_USER\Software\Classes</code>, with writes directed to HKLM. This is a shortcut to writing system default values, and many tutorials show this because it's <em>slightly</em> simpler, but unless you're installing the application for all users I don't recommend it. </p>
<p><a href="http://support.microsoft.com/kb/256986" rel="nofollow">Advanced registry info on MSDN</a></p>
http://stackoverflow.com/questions/1388787/information-in-registry/1390530#13905303Answer by Factor Mystic for information in registryFactor Mystic2009-09-07T18:38:07Z2009-09-07T18:38:07Z<p>Wael's code works fine, but there's a couple other (slightly syntactically cleaner) ways to do it, for example:</p>
<ul>
<li><code>OpenSubKey</code> knows how to open several subkeys at once:</li>
</ul>
<p><code>RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\leaf\monitor");</code></p>
<ul>
<li>Additionally, if you <em>only</em> need to get a value, which your question asks about, it's even simpler (and this allows you to set a fallback value if your target key doesn't exist, avoiding a thrown exception if you use <code>OpenSubKey</code>):</li>
</ul>
<p><code>string version = Registry.GetValue(@"HKEY_LOCAL_MACHINE\Software\leaf\monitor", "version", "0");</code></p>
http://stackoverflow.com/questions/1381811/add-item-to-right-click-menu/1381934#13819341Answer by Factor Mystic for Add item to right click menuFactor Mystic2009-09-04T23:22:06Z2009-09-04T23:22:06Z<p>It depends on where you want the context menu items and for what overall purpose. Most of the answers so far are for context menus in Explorer, but if you want to change a context menu inside of a program as your question states, it becomes much harder and/or impossible.</p>
<p>However, it's very possible to add context menu items to file types in explorer without shell extensions, it's possible by <a href="http://msdn.microsoft.com/en-us/library/cc144175%28VS.85%29.aspx" rel="nofollow">registry manipulation</a> or <a href="http://defaultprogramseditor.com" rel="nofollow">3rd party utilities</a>, or with COM as others have said.</p>
http://stackoverflow.com/questions/1321634/registry-key-delete-error/1323129#13231291Answer by Factor Mystic for Registry Key Delete ErrorFactor Mystic2009-08-24T15:41:25Z2009-08-24T15:41:25Z<p>It's hard to be sure from your question, but if you try to delete a key that has subkeys, it will fail. Check into <a href="http://msdn.microsoft.com/en-us/library/h3yfwzfx.aspx" rel="nofollow">DeleteSubKeyTree</a>.</p>
http://stackoverflow.com/questions/1269950/how-to-set-gtext-style-to-bold-font-in-a-windows-gadget2How to set g:text style to bold font in a Windows Gadget?Factor Mystic2009-08-13T03:55:46Z2009-08-17T00:04:37Z
<p>I'm developing a Vista/Win7 Desktop Gadget that uses a translucent <code>g:background</code> (<a href="http://msdn.microsoft.com/en-gb/library/aa359356%28VS.85%29.aspx" rel="nofollow">doc</a>) area with <code>g:text</code> (<a href="http://msdn.microsoft.com/en-gb/library/aa359342%28VS.85%29.aspx" rel="nofollow">doc</a>) on top. I'm adding the text via <code>addTextObject</code> (<a href="http://msdn.microsoft.com/en-gb/library/aa359355%28VS.85%29.aspx" rel="nofollow">doc</a>), and this all works as expected.</p>
<p>However, I can't figure out how to set that text to bold style. There doesn't seem to be a way to do this directly via the exposed properties that I can see, and I can't use regular text + CSS in this case due to the fact this text is placed onto a <code>g:background</code> object.</p>
<p>I have also tried specifying a bold font directly, such as <code>Arial Bold</code> (doesn't work) instead of <code>Arial</code> (works).</p>
<p>So how can this be done?</p>
<p><strong>Edit</strong>: I have tried setting <code>font-weight:bold</code> for both the body and the <code>g:background</code> object that parents my text; no luck.</p>
http://stackoverflow.com/questions/1285333/how-many-people-have-net-framework-3-5-installed/1285342#12853426Answer by Factor Mystic for how many people have .net framework 3.5 installed?Factor Mystic2009-08-16T21:06:51Z2009-08-16T21:34:27Z<p>If you only need .Net 3.0, this comes along with Vista RTM/Server 08, so you can look at those penetration numbers for a guaranteed base. Likewise, Windows 7 will have .Net 3.5 baked in.</p>
<p>But making it a prerequesite to install isn't really a big deal, when the installer is only a few megabytes. See: <a href="http://www.hanselman.com/smallestdotnet/" rel="nofollow">Scott Hanselman's SmallestDotNet</a> project.</p>
<p>See also: <a href="http://stackoverflow.com/questions/933755/what-are-the-installed-base-percentages-for-the-various-net-framework-versions">What is the market share for the various .Net framework versions?</a>.</p>
http://stackoverflow.com/questions/1272736/what-is-the-best-net-alternative-to-dde-for-file-associations/1274000#12740000Answer by Factor Mystic for What is the best .net alternative to dde for file associations?Factor Mystic2009-08-13T19:10:00Z2009-08-13T19:10:00Z<p>Well ideally, you could use regular file association techniques (<a href="http://msdn.microsoft.com/en-us/library/cc144158%28VS.85%29.aspx" rel="nofollow">doc</a>), along with some form of inter-process communication to organize how your program handles subsequent launches.</p>
<p>For instance, when your program starts, check if another instance is already open. If so, pass any parameter data to the existing instance, and quit. The existing instance then handles the data appropriately.</p>
<p>Here (<a href="http://stackoverflow.com/questions/50153/interprocess-communication-for-windows-in-c-net-2-0/50180#50180">link</a>) is a good SO answer to get you started with that.</p>
http://stackoverflow.com/questions/1249468/how-to-transferring-objects-between-windows-forms-in-c/1249484#12494843Answer by Factor Mystic for How to Transferring objects between windows forms in c#Factor Mystic2009-08-08T17:50:37Z2009-08-08T17:50:37Z<p>You could probably just add a public <code>PERSONEL</code> property to the form, which you would then set in your <code>SelectedIndexChanged</code> event handler. Then any code that has access to your selector form could access your custom selected <code>PERSONEL</code> property.</p>
http://stackoverflow.com/questions/1210331/prev-next-pages-for-winforms/1210367#12103670Answer by Factor Mystic for prev next pages for winformsFactor Mystic2009-07-31T02:21:27Z2009-07-31T02:21:27Z<p>I did this when I wrote an Aero Wizard host. Basically the strategy was to keep a <code>List<T></code> of <code>Panel</code>s that contained each page's controls, and that page <code>Panel</code> would be docked to a fixed <code>Panel</code> in the wizard. When the back button was clicked, I just replaced the contents of the host <code>Panel</code> with the previous <code>Panel</code> from the <code>List<T></code>. And as users move "forward", just add the current page <code>Panel</code> to the list.</p>
http://stackoverflow.com/questions/1203755/registering-file-type-and-custom-document-icon-in-net/1203919#12039190Answer by Factor Mystic for Registering file type and custom document icon in .NET Factor Mystic2009-07-30T01:01:04Z2009-07-30T01:01:04Z<p><code>DefaultIcon</code> will also accept a path to a valid .ico file as an Icon.</p>
http://stackoverflow.com/questions/1198161/where-to-get-the-keycode-for-keyboard-hook-in-c/1198178#11981782Answer by Factor Mystic for where to get the keycode for keyboard hook in c#Factor Mystic2009-07-29T05:26:27Z2009-07-29T05:26:27Z<p><a href="http://pinvoke.net/default.aspx/Enums/VirtualKeys.html" rel="nofollow">Pinvoke.net</a> has them copy-paste ready.</p>
http://stackoverflow.com/questions/1189128/regex-to-extract-subdomain-from-url/1189145#11891451Answer by Factor Mystic for Regex to extract subdomain from URL?Factor Mystic2009-07-27T16:18:57Z2009-07-27T16:26:50Z<p>Purely the subdomain string (result is $1):</p>
<pre><code>^http://([^.]+)\.domain\.com
</code></pre>
<p>Making <code>http://</code> optional (result is $2):</p>
<pre><code>^(http://)?([^.]+)\.domain\.com
</code></pre>
<p>Making the <code>http://</code> and the subdomain optional (result is $3):</p>
<pre><code>(http://)?(([^.]+)\.)?domain\.com
</code></pre>
http://stackoverflow.com/questions/746836/is-there-an-official-windows-xp-registry-reference/1182827#11828270Answer by Factor Mystic for Is there an official Windows XP registry reference?Factor Mystic2009-07-25T19:18:45Z2009-07-25T19:18:45Z<p><a href="http://rads.stackoverflow.com/amzn/click/0735619174" rel="nofollow">Microsoft Windows Internals, 4th ed.</a>, Chapter 4, Part 1: The Registry is <em>exactly</em> what you want.</p>
http://stackoverflow.com/questions/1008734/where-to-store-registry-data-for-all-users/1174955#11749550Answer by Factor Mystic for Where to store Registry data for All UsersFactor Mystic2009-07-23T22:56:10Z2009-07-23T22:56:10Z<p>You can put all users data in <code>HKEY_LOCAL_MACHINE</code> hive, but you'll need to adjust the permissions on the key to in order to make it writable by all users, as your question states.</p>
http://stackoverflow.com/questions/1047457/is-it-possible-to-set-a-checked-listview-item-to-mixed-state0Is it possible to set a checked listview item to mixed state?Factor Mystic2009-06-26T05:11:19Z2009-07-15T08:25:05Z
<p>The <code>CheckBox</code> control exposes both boolean <code>Checked</code> and <code>System.Windows.Forms.CheckState</code> enum <code>CheckState</code> properties, which allow you to set the control to either checked, unchecked, or mixed state (<code>Indeterminate</code> enum value).</p>
<p>I want to set a <code>ListView</code> item's state to <code>Indeterminate</code>, but only the <code>Checked</code> property seems to be available. So, is there a way to set it to mixed, possibly by window messaging or similar tricks?</p>
http://stackoverflow.com/questions/1021715/winforms-menu-as-array/1023262#10232622Answer by Factor Mystic for winforms menu as arrayFactor Mystic2009-06-21T05:13:42Z2009-06-21T05:13:42Z<p><code>ToolStripMenuItem</code>s are exposed through <code>ContextMenuStrip.Items</code></p>
<pre><code>For Each myItem As ToolStripMenuItem In myContextMenuStrip.Items
myItem.Enabled = myUser.IsAdministrator
Next
</code></pre>
http://stackoverflow.com/questions/1005454/using-the-switch-statement-in-a-windows-forms-application/1005466#10054664Answer by Factor Mystic for Using the switch statement in a Windows Forms applicationFactor Mystic2009-06-17T06:55:57Z2009-06-17T07:11:02Z<p>The switch/case syntax is identical between WinForms and a console app (or any other type of application or class library), the only difference is how you display the data. If you want to add a string to a listbox (which is apparently what you're asking), it's as simple as</p>
<pre><code>listBox1.Items.Add("Here is the text of the list box item");
</code></pre>
http://stackoverflow.com/questions/513215/how-to-serialize-a-derived-class-in-silverlight1How to serialize a derived class in SilverlightFactor Mystic2009-02-04T20:42:52Z2009-06-16T20:40:29Z
<p>I created a custom control in XAML, and added some custom properties as well. Now, I want to serialize it to JSON if possible. Here is (essentially) what I have:</p>
<pre><code>public partial class MyCustomClass : UserControl
{
public Dictionary<char, int[]> ValueMap;
public int Value { get; set; }
}
</code></pre>
<p>And in the code that handles serialization:</p>
<pre><code>public static string Serialize(object objectToSerialize)
{
using (MemoryStream ms = new MemoryStream())
{
DataContractJsonSerializer serializer =
new DataContractJsonSerializer(objectToSerialize.GetType());
serializer.WriteObject(ms, objectToSerialize);
ms.Position = 0;
using (StreamReader reader = new StreamReader(ms))
return reader.ReadToEnd();
}
}
</code></pre>
<p>However, <code>serializer.WriteObject(ms, objectToSerialize);</code> throws</p>
<p><code>System.Runtime.Serialization.InvalidDataContractException</code>:</p>
<blockquote>
<p>Consider marking it with the
DataContractAttribute attribute, and
marking all of its members you want
serialized with the
DataMemberAttribute attribute.
Alternatively, you can ensure that the
type is public and has a parameterless
constructor - all public members of
the type will then be serialized, and
no attributes will be required."</p>
</blockquote>
<p>Now, when I do add those attributes to the <code>MyCustomClass</code>, I of course get the same exception, only this time for <code>System.Windows.UIElement</code> instead of <code>MyCustomClass</code>.</p>
<p>So, is there a way to serialize my custom derived class with the existing serialization method, or should I just write a custom serialization methods for <code>MyCustomClass</code>?</p>
http://stackoverflow.com/questions/994129/c-code-optimization/994190#9941902Answer by Factor Mystic for C# Code optimizationFactor Mystic2009-06-15T01:10:42Z2009-06-15T01:10:42Z<p>Micro Optimization, huh? One notable playwright says <a href="http://www.codinghorror.com/blog/archives/001218.html" rel="nofollow">code readability is more important than micro optimizations</a>, and I agree.</p>
http://stackoverflow.com/questions/993249/net-glass-effect-in-c-2-0-applications/993412#9934125Answer by Factor Mystic for .net - Glass effect in C# 2.0 applications.Factor Mystic2009-06-14T18:23:36Z2009-06-14T18:23:36Z<p>This is done using interop with the Vista DWM (Desktop Window Manager) API.</p>
<p>For example, import these functions:</p>
<pre><code>[DllImport("dwmapi.dll")]
static extern void DwmExtendFrameIntoClientArea(IntPtr hWnd, ref Margins pMargins);
[StructLayout(LayoutKind.Sequential)]
struct Margins
{
public int cxLeftWidth;
public int cxRightWidth;
public int cyTopHeight;
public int cyBottomHeight;
}
</code></pre>
<p>Then you can use this to "pull down" glass from the top of the window down into the client area:</p>
<pre><code>GlassMargins.Top = 40;
GlassMargins.Left = 0;
GlassMargins.Right = 0;
GlassMargins.Bottom = 0;
DwmExtendFrameIntoClientArea(this.Handle, ref GlassMargins);
</code></pre>
<p>From here, you can go on and do other things, like draw text or images onto the glass, or put controls on it, such as a Office 2007 style application button.</p>
http://stackoverflow.com/questions/951856/is-there-an-easy-way-to-check-net-framework-verison-using-c/951915#9519156Answer by Factor Mystic for Is there an easy way to check .net framework verison using C#?Factor Mystic2009-06-04T17:18:21Z2009-06-04T19:32:25Z<p>Something like this should do it. Just grab the value from the registry</p>
<p><strong>Edit</strong>: Updated a bit; <code>Framework</code> is the highest installed version, <code>SP</code> is the service pack for that version.</p>
<pre><code>RegistryKey installed_versions = Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\NET Framework Setup\NDP");
string[] version_names = installed_versions.GetSubKeyNames();
//version names start with 'v', eg, 'v3.5' which needs to be trimmed off before conversion
double Framework = Convert.ToDouble(version_names[version_names.Length - 1].Remove(0, 1));
int SP = Convert.ToInt32(installed_versions.OpenSubKey(version_names[version_names.Length - 1]).GetValue("SP", 0));
</code></pre>
http://stackoverflow.com/questions/936040/designing-a-main-form-main-menu-for-a-winform-application/936105#9361050Answer by Factor Mystic for Designing a main form ("main menu") for a WinForm applicationFactor Mystic2009-06-01T18:30:50Z2009-06-01T18:30:50Z<p>I suggest starting with the design principles suggested by Microsoft: <a href="http://msdn.microsoft.com/en-us/library/aa511258.aspx" rel="nofollow">Windows User Experience Interaction Guidelines</a></p>
http://stackoverflow.com/questions/936009/processstartinfo-print-verb-does-not-exist-for-tif-images/936065#9360652Answer by Factor Mystic for ProcessStartInfo print verb does not exist for .tif imagesFactor Mystic2009-06-01T18:23:21Z2009-06-01T18:23:21Z<p>First of all, the verb you're probably looking for is probably <code>printto</code></p>
<p>You could also shell execute the print command directly, with</p>
<pre><code>"%SystemRoot%\System32\rundll32.exe" "%SystemRoot%\System32\shimgvw.dll",ImageView_PrintTo /pt "%1" "%2" "%3" "%4"
</code></pre>
<p>The parameters are explained in <a href="http://support.microsoft.com/kb/224961" rel="nofollow">KB224961</a> as:</p>
<pre><code>%1 File name
%2 Printer name
%3 Driver name
%4 Port name
/p Print
pt Printto
</code></pre>
http://stackoverflow.com/questions/856236/net-wpf-process-start-not-working-on-vista-and-windows-2007/860297#8602970Answer by Factor Mystic for .NET WPF Process.Start() not working on Vista and Windows 2007Factor Mystic2009-05-13T20:40:06Z2009-05-13T20:40:06Z<p>Is it just .chm files? If so it may not be opening because, by default, chm files in untrusted locations are blocked. See: <a href="http://support.microsoft.com/kb/902225" rel="nofollow">KB902225</a>. From <a href="http://intellects.in/2008/11/06/utility-to-recursively-unblock-files-downloaded-from-internet/" rel="nofollow">this article</a> it appears that you may be able to unblock them programmatically, even if it's just by launching Sysinternals streams.exe first (as referenced in the article).</p>
http://stackoverflow.com/questions/792544/how-to-download-an-image-from-web-showing-the-progress-of-the-download-in-c-usin/832301#8323012Answer by Factor Mystic for How to download an image from web showing the progress of the download in c# using winforms?Factor Mystic2009-05-06T23:35:04Z2009-05-06T23:35:04Z<p>You can probably do this, however, it will require some additional knowledge of the structure of gif files. <a href="http://www.wotsit.org/list.asp?al=G" rel="nofollow">Wotsit.org</a> has several links to gif structure documents, to get you started.</p>
<p>The general approach would be to take your total accumulated data, and from the end, search back until you find the end of a block terminator. The data between this last valid block and the end of the stream is only partially complete, and must be considered junk data. You want to remove it, and add a file trailing block to the stream. Then, you should be able to load this edited stream into a PictureBox.</p>
http://stackoverflow.com/questions/827612/windows-xp-hkcu-lastvisitedmru-maximum-number-of-items-allowed/827635#8276352Answer by Factor Mystic for Windows XP, HKCU\...\LastVisitedMRU maximum number of items allowed?Factor Mystic2009-05-06T01:16:59Z2009-05-06T01:16:59Z<p>Unless I'm misunderstanding your situation, the standard Windows OpenFileDialog should have a property called <code>InitialDirectory</code>, which specifies the directory the dialog should open to.</p>
http://stackoverflow.com/questions/1706365/c-associate-a-file-type-and-open-it-within-webbrowser-control/1706391#1706391Comment by Factor Mystic on C# - Associate a file type and open it within WebBrowser control?Factor Mystic2009-11-10T18:13:20Z2009-11-10T18:13:20ZI really don't recommend writing to HKCR. The writes get redirected to HKLM anyway. If this is an all user/default machine setting: HKLM (Needs elevated privileges). If this is a per-user setting: HKCU (only user rights needed).http://stackoverflow.com/questions/12843/how-to-combine-two-projects-in-mercurial/20591#20591Comment by Factor Mystic on How to combine two projects in Mercurial?Factor Mystic2009-10-25T16:18:47Z2009-10-25T16:18:47ZThis works, but you'll need to also run <code>hg merge</code> to finally get everything workinghttp://stackoverflow.com/questions/257587/bring-a-window-to-the-front-in-wpf/257741#257741Comment by Factor Mystic on Bring a window to the front in WPFFactor Mystic2009-10-15T00:34:08Z2009-10-15T00:34:08ZThis has been quite awhile ago, but yes, at the time I did try thathttp://stackoverflow.com/questions/1282762/to-convert-phps-while-loop-to-a-for-loopComment by Factor Mystic on To convert PHP's while loop to a for -loopFactor Mystic2009-08-15T20:30:10Z2009-08-15T20:30:10ZThe error isn't a missing ) in your while statement, is it?http://stackoverflow.com/questions/1274020/extract-form-fields-using-regexComment by Factor Mystic on Extract form fields using RegExFactor Mystic2009-08-13T19:19:27Z2009-08-13T19:19:27ZPeople are going to tell you to use an html parsing library to mode the appropriate DOM nodes into an associative array. Those people are right. Don't use regex to parse HTML.http://stackoverflow.com/questions/1250470/how-can-i-fix-stack-overflow-at-line-0Comment by Factor Mystic on How can I fix stack overflow at line 0?Factor Mystic2009-08-09T03:13:39Z2009-08-09T03:13:39ZThe stack overflow gods require developer tears to put the cap back on the stack to keep it from spilling any morehttp://stackoverflow.com/questions/1249468/how-to-transferring-objects-between-windows-forms-in-cComment by Factor Mystic on How to Transferring objects between windows forms in c#Factor Mystic2009-08-08T17:47:59Z2009-08-08T17:47:59ZI hope FirebirdEntityz should really be FirebirdEntityZ and not FirebirdEntitieshttp://stackoverflow.com/questions/9545/who-in-the-software-world-do-you-admire-the-most/10017#10017Comment by Factor Mystic on Who in the software world do you admire the most?Factor Mystic2009-07-31T04:39:02Z2009-07-31T04:39:02ZA only a <i>little</i> cracked out??http://stackoverflow.com/questions/1210331/prev-next-pages-for-winforms/1210367#1210367Comment by Factor Mystic on prev next pages for winformsFactor Mystic2009-07-31T04:30:21Z2009-07-31T04:30:21ZScratch, for Default Programs Editor. I'll open source it all at some point, but right now all I can give is advice :)http://stackoverflow.com/questions/1185935/php-mysql-select-statement-slight-issueComment by Factor Mystic on PHP/MySQL SELECT Statement - Slight IssueFactor Mystic2009-07-27T00:07:43Z2009-07-27T00:07:43ZWhy include the date in the select statement? Why not just last <code>n</code> messages of the thread?http://stackoverflow.com/questions/1084682/center-align-horizontal-accordion-in-ie-dynamic-widthsComment by Factor Mystic on Center Align Horizontal Accordion in IE (dynamic widths)Factor Mystic2009-07-05T21:19:42Z2009-07-05T21:19:42ZThis works fine in the latest version of IE, so I assume this is for backwards compatibility?http://stackoverflow.com/questions/1047457/is-it-possible-to-set-a-checked-listview-item-to-mixed-state/1047517#1047517Comment by Factor Mystic on Is it possible to set a checked listview item to mixed state?Factor Mystic2009-06-26T06:16:32Z2009-06-26T06:16:32ZI know it's not an exposed property in the Windows Forms control; I'm asking if it's possible any other way.http://stackoverflow.com/questions/397002/what-are-the-biggest-time-wasters-for-learning-programming/397015#397015Comment by Factor Mystic on What are the biggest time wasters for learning programming?Factor Mystic2009-06-26T04:53:00Z2009-06-26T04:53:00Z...and realizing what the problem was as soon as the computer is off and you're in bed.http://stackoverflow.com/questions/1040879/c-write-a-simple-string-from-winforms-cmd-prompt-telnetComment by Factor Mystic on C# write a simple string from winforms --> cmd prompt telnetFactor Mystic2009-06-25T01:41:25Z2009-06-25T01:41:25ZYou can't do interactive input by redirecting standard I/O iirchttp://stackoverflow.com/questions/1711/what-is-the-single-most-influential-book-every-programmer-should-read/46460#46460Comment by Factor Mystic on What is the single most influential book every programmer should read?Factor Mystic2009-06-07T23:39:34Z2009-06-07T23:39:34ZYou guys have drank some wacky kool aid. I've read this book and it's value to programmers <i>specifically</i> is weak at best. Still a good book though.