User mackenir - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T23:45:36Zhttp://stackoverflow.com/feeds/user/25457http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1842302/why-does-silverlight-treat-localhost-and-127-0-0-1-differently0Why does Silverlight treat localhost and 127.0.0.1 differently?mackenir2009-12-03T19:27:14Z2009-12-03T19:28:27Z
<p>In my SL app, when I use WebClient to do a GET on a webserver on the local machine, the behaviour is different depending on whether I use 'localhost' or '127.0.0.1' as the host name of the server.</p>
<p>When running the SL app locally on the VS development webserver, both URIs work. However, when running the SL app from a webserver on the internet, only 127.0.0.1 works.</p>
<p>My guess is that this is a result of the restrictions on calling from an internet SL app to a server in the intranet zone. But since the restriction can apparently be dodged by using 127.0.0.1, I'm wondering what's the point of the restriction?</p>
<p>Is there some other reason WebClient calls succeed or fail depending on the use of 'localhost' and '127.0.0.1'?</p>
http://stackoverflow.com/questions/659688/problem-with-binding-nullable-value-to-wpf-combobox0Problem with binding Nullable value to WPF ComboBoxmackenir2009-03-18T19:10:46Z2009-11-23T23:43:26Z
<p>I am binding a WPF ComboBox to a nullable property of type MyEnum? (where MyEnum is an enumerated type)</p>
<p>I am programmatically populating the ComboBox items like this:</p>
<pre><code>// The enum type being bound to
enum MyEnum { Yes, No }
// Helper class for representing combobox listitems
// (a combination of display string and value)
class ComboItem {
public string Display {get;set}
public MyEnum? Value {get;set}
}
private void LoadComboBoxItems()
{
// Make a list of items to load into the combo
var items = new List<ComboItem> {
new ComboItem {Value = null, Display = "Maybe"},
new ComboItem {Value = MyEnum.Yes, Display = "Yes"},
new ComboItem {Value = MyEnum.No, Display = "No"},};
// Bind the combo's items to this list.
theCombo.ItemsSource = items;
theCombo.DisplayMemberPath = "Display";
theCombo.SelectedValuePath = "Value";
}
</code></pre>
<p>Also in the code-behind, I am setting the DataContext to an instance of a class with a property called TheNullableProperty (for this example anyway) of type MyEnum?.</p>
<p>The binding of theCombo's SelectedValue is done in my XAML file.</p>
<pre><code><ComboBox
Name="theCombo"
SelectedValue="{Binding Path=TheNullableProperty,
UpdateSourceTrigger=PropertyChanged}"/>
</code></pre>
<p><strong>Problem:</strong></p>
<p>When the value of the bound property is initially non-null, the combo box displays the value properly.</p>
<p>But when the value of the bound property is initially null, the combo box is blank.</p>
<p>It looks like every aspect of data binding is working apart from the representation of the null value when the combobox is first shown.</p>
<p>For example: you can select Maybe from the dropdown, and the bound property is correctly set to null. It's just that initial loading that's failing. Maybe I need to just manually set the SelectedValue initially...</p>
<h1>What I Ended Up Doing</h1>
<ul>
<li>Add a hidden textblock databound to the underlying nullable enum value via a Converter that converts from the nullable enum to a string (enum.ToString, or "null").</li>
<li>Load up the combo box with 'ComboItems' each having a string Label (displayed in the combo) and a string Value equal to the enum values as strings (and "null" for the null value).</li>
<li><p>Data-bind the combo box to the textblock.</p>
<pre><code>/// <summary>
/// Convert from EnumeratedType? to string (null->"null", enum values->ToString)
/// </summary>
public class EnumConverter<T> : IValueConverter where T:struct
{
public static string To(T? c)
{
if (c == null)
return "null";
return c.ToString();
}
public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
{
return To((T?)value);
}
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
var s = (string) value;
if (s == "null")
return null;
return (T?)Enum.Parse(typeof(T), s);
}
}
public class MyEnumConverter : EnumConverter<MyEnum>
{
}
public class ComboItem
{
public string Value { get; set; }
public string Label { get; set; }
public ComboItem(MyEnum? e, string label)
{
Value = MyEnumConverter.To(e);
Label = label;
}
}
static IEnumerable<ComboItem> GetItems()
{
yield return new ComboItem(null, "maybe");
yield return new ComboItem(MyEnum.Yes, "yup");
yield return new ComboItem(MyEnum.No, "nope");
}
</code></pre>
<p>private void SetupComboBox()
{
thecombo.ItemsSource = GetItems().ToList();
}</p></li>
</ul>
http://stackoverflow.com/questions/1708691/asp-net-mvc-routing-to-serve-a-file-at-website-top-level0ASP.NET MVC Routing to serve a file at website 'top level'?mackenir2009-11-10T15:14:25Z2009-11-10T17:11:26Z
<p>I'm an absolute beginner with ASP.NET[MVC] so this is probably a dumb question.</p>
<p>I want to wire-up a url "http://localhost/clientaccesspolicy.xml" to a specific controller action. How could I go about doing this?</p>
<p><strike>I'm also wondering how to just statically serve a file for this url.</strike></p>
<p>(I was able to statically serve the file by adding it as a 'Content' file at the top level of the project).</p>
http://stackoverflow.com/questions/1184631/hooking-thread-exit0Hooking thread exitmackenir2009-07-26T13:43:28Z2009-11-08T04:00:04Z
<p>Is there a way for me to hook the exit of managed threads (i.e. run some code on a thread, just before it exits?)</p>
<p>I've developed a mechanism for hooking thread exit that works for <em>some</em> threads. Step 1: develop a 'hook' STA COM class that takes a callback function and calls it in its destructor. Step 2: create a ThreadStatic instance of this object on the thread I want to hook, and pass the object a managed delegate converted to an unmanaged function pointer. The delegate then gets called on thread exit (since the CLR calls IUnknown::Release on all STA COM RCWs as part of thread exit).</p>
<p>This mechanism works on, for example, worker threads that I create in code using the Thread class.</p>
<p>However, it doesn't seem to work for the application's main thread (be it a console or windows app). The 'hook' COM object seems to be deleted too late in the shutdown process and the attempt to call the delegate fails.</p>
<p>(The reason I want to implement this facility is so I can run some native COM code on the exiting thread that works with STA COM objects that were created on the thread, before it's 'too late' (i.e. before the thread has exited, and it's no longer possible to work with STA COM objects on that thread.))</p>
http://stackoverflow.com/questions/1660319/wpf-databind-dynamic-control-type/1660374#16603740Answer by mackenir for WPF - Databind dynamic control typemackenir2009-11-02T10:06:54Z2009-11-02T10:17:42Z<p>This works for me, at least initially:</p>
<pre><code><ContentControl Content="{Binding Control}"/>
</code></pre>
<p>NB: if your UI binds to this property in more than one place, you could get an exception due to the attempt to parent the control in multiple places.</p>
http://stackoverflow.com/questions/1158805/what-is-the-com-context-referred-to-in-the-contextswitchdeadlock-mda-message3What is the 'COM context' referred to in the 'ContextSwitchDeadlock' MDA message?mackenir2009-07-21T12:12:15Z2009-10-26T07:00:09Z
<p>While running unit tests, I'm getting the MDA shown below. </p>
<p>In the error message, what is the hexadecimal value refered to as a 'COM context'?</p>
<p>Can I determine this value for a given STA thread? If so, how?</p>
<blockquote>
<p><em>Managed Debugging Assistant
'ContextSwitchDeadlock' has detected a
problem in 'C:\Program Files\Microsoft
Visual Studio
9.0\Common7\IDE\vstesthost.exe'. Additional Information: The CLR has
been unable to transition from <strong>COM</strong>
<strong>context 0x14cff0</strong> to <strong>COM context</strong>
<strong>0x14d218</strong> for 60 seconds. The thread
that owns the destination
context/apartment is most likely
either doing a non pumping wait or
processing a very long running
operation without pumping Windows
messages. This situation generally has
a negative performance impact and may
even lead to the application becoming
non responsive or memory usage
accumulating continually over time. To
avoid this problem, all single
threaded apartment (STA) threads
should use pumping wait primitives
(such as CoWaitForMultipleHandles) and
routinely pump messages during long
running operations.</em></p>
</blockquote>
http://stackoverflow.com/questions/1598083/what-is-a-windows-azure-compute-hour0What is a Windows Azure Compute Hour? [closed]mackenir2009-10-21T00:24:08Z2009-10-21T00:29:58Z
<p>According to pricing details on the Microsoft Windows Azure website, compute hours cost 12 cents each, but what are they?</p>
http://stackoverflow.com/questions/839945/how-to-keep-window-on-top-of-another-window-in-a-different-thread0How to keep window on top of another window in a different thread?mackenir2009-05-08T14:06:16Z2009-10-09T17:00:03Z
<p>I have a WinForms form (call it 'MyForm') that hosts some WPF UI (via ElementHost). I show this form on a separate thread from the main UI thread.</p>
<p>I want 'MyForm' to remain on top of the main application window, so I am showing the form using the Show(IWin32Window) overload of the Show method, with the passed-in IWin32Window being the main app window.</p>
<p>The window is shown indirectly via a 'launcher form' which is the 'application form' of the separate STA thread (the one passed in to Application.Run). The reason for this is that you can't specify an owner window when launching a form via Application.Run.</p>
<p>Here is the code to launch MyForm (used as the ThreadStart for an STA thread):</p>
<pre><code>void MyWindowThread()
{
myForm = new MyForm();
var launcherForm = new LauncherForm(myForm, mainWindow);
Application.Run(new ApplicationContext(launcherForm));
// launcherForm will Show myForm when it itself is shown.
}
</code></pre>
<p>The 'launcher' form:</p>
<pre><code>public partial class LauncherForm : Form
{
private readonly MyForm _myForm;
private readonly IWin32Window _mainWindow;
public WizardUILauncherForm(MyForm myForm, IWin32Window mainWindow)
{
_myForm = myForm;
_mainWindow = mainWindow;
InitializeComponent();
}
protected override void OnShown(EventArgs e)
{
// show the actual form that the user will interact with, on top of mainWindow.
_myForm.Show(_mainWindow);
}
}
</code></pre>
<p>This almost works. 'MyForm' stays on top of the main app window, but only until I mouse over a WPF control with a tooltip. When the tooltip is shown, 'MyForm' disappears behind the main application window. This doesn't happen when I mouseover a WinForms control on my form to display its tooltip - it seems specific to WPF controls.</p>
<p>It also only happens when MyForm is the foreground window.</p>
<p>Note that I get the same problem when I use MyForm as the application form (skipping out the launcher) and override MyForm's OnLoad method to set its owner using SetWindowLong. This is a less involved way of doing it, but I wanted to use a mechanism that didn't use P-Invoke, to see if this would work better. Both methods are broken in the same way.</p>
<p><strong>Update</strong>
A test application implies that this problem is specific to showing UI in a Visual Studio wizard extension. Which I suppose makes it even more niche and even less likely to be answered!</p>
http://stackoverflow.com/questions/1334254/how-can-i-call-the-base-implementation-of-an-overridden-virtual-method1How can I call the 'base implementation' of an overridden virtual method?mackenir2009-08-26T12:10:30Z2009-10-07T11:06:10Z
<p>Given the following code, is there a way I can call class A's version of method X?</p>
<pre><code>class A
{
virtual void X() { Console.WriteLine("x"); }
}
class B : A
{
override void X() { Console.WriteLine("y"); }
}
class Program
{
static void Main()
{
A b = new B();
// Call A.X somehow, not B.X...
}
</code></pre>
http://stackoverflow.com/questions/1530588/why-isnt-wpf-displaying-an-accented-character-correctly0Why isnt WPF displaying an accented character correctly?mackenir2009-10-07T09:47:34Z2009-10-07T10:08:07Z
<p>I'm downloading a webpage, and then loading strings from the page into a WPF UI.
One string has an accented character: "Ãine".
In the debugger, the string looks fine, but when added to a WPF ListBox, it appears like this: Ã[]ine, where [] is a single rectangular symbol.
When I copy the text from the debugger UI and paste it, a space appears after the Ã. This 'space' shows up as the rectangular symbol when displayed by WPF.</p>
<p>Does anyone know what's going on?</p>
http://stackoverflow.com/questions/1530588/why-isnt-wpf-displaying-an-accented-character-correctly/1530660#15306600Answer by mackenir for Why isnt WPF displaying an accented character correctly?mackenir2009-10-07T10:07:05Z2009-10-07T10:07:05Z<p>The fix was to download the webpage like this:</p>
<pre><code>WebClient c = new WebClient();
var bytes = c.DownloadData(url);
UTF8Encoding utf8 = new UTF8Encoding();
var s = utf8.GetString(bytes);
</code></pre>
<p>instead of like this:</p>
<pre><code>WebClient c = new WebClient();
var s = c.DownloadString(url);
</code></pre>
<p><code>WebClient.DownloadString</code> was unable to properly download the page and convert it to a string.</p>
http://stackoverflow.com/questions/295506/t4-templates-suitable-for-generating-c-code3T4 Templates - suitable for generating C++ code?mackenir2008-11-17T12:52:29Z2009-10-07T09:54:32Z
<p>Are there any issues which might make MS's T4 Template code-generation system unsuitable for generating C++ code?</p>
http://stackoverflow.com/questions/1508695/why-doesnt-this-use-of-implicit-casts-work5Why doesn't this use of implicit casts work? mackenir2009-10-02T10:04:16Z2009-10-02T16:54:30Z
<p>I've defined a generic class "<code>Lazy<T></code>", for lazy evaluation and caching of the result of a delegate <code>Func<T></code>.</p>
<p>I also define two implicit cast operators so I can create a <code>Lazy<T></code> from a <code>Func<T></code>s, and I can assign a <code>Lazy<T></code> to a <code>T</code> (gets the <code>Value</code> of the <code>Lazy<T></code>)</p>
<p>The idea is that you can pass around a <code>Lazy<T></code> in place of an instance of <code>T</code>, but not do the work to calculate/retrieve the value until it is assigned to an actual instance of <code>T</code>.</p>
<pre><code>// class Lazy<T>
// Encapsulates a value which can be retrieved when first accessed,
// and is then cached.
class Lazy<T>
{
private Func<T> _getter;
private T _cached;
private bool _isCached;
// Get/set the getter delegate
// that 'calculates' the value.
public Func<T> Getter
{
get
{
return _getter;
}
set
{
_getter = value;
_cached = default(T);
_isCached = false;
}
}
// Get/set the value.
public T Value
{
get
{
if (!_isCached)
{
_cached = Getter();
_isCached = true;
_getter = null;
}
return _cached;
}
set
{
_cached = value;
_isCached = true;
_getter = null;
}
}
// Implicit casts:
// Create a T from a Lazy<T>
public static implicit operator T(Lazy<T> lazy)
{
return lazy.Value;
}
// Create a Lazy<T> from a Func<T>
public static implicit operator Lazy<T>(Func<T> getter)
{
return new Lazy<T> {Getter = getter};
}
}
</code></pre>
<p>But this class doesn't work as I expected in one case, highlighted in the test app below:</p>
<pre><code>class Program
{
static void Main()
{
// This works okay (1)
TestLazy(() => MakeStringList());
// This also works (2)
Lazy<string> lazyString = new Func<string>(() => "xyz");
string s = lazyString;
//This doesn't compile (3)
//
Lazy<IList<string>> lazyStrings = new Func<IList<string>>(MakeStringList);
IList<string> strings = lazyStrings; //ERROR
}
static void TestLazy<T>(Func<T> getter)
{
Lazy<T> lazy = getter;
T nonLazy = lazy;
}
private static IList<string> MakeStringList()
{
return new List<string> { new string('-', 10) };
}
}
</code></pre>
<p>On the line marked with <code>//ERROR</code>, I get a compile error:</p>
<p><strong>error CS0266: Cannot implicitly convert type <code>Lazy<System.Collections.Generic.IList<string>></code> to <code>System.Collections.Generic.IList<string></code>. An explicit conversion exists (are you missing a cast?)</strong></p>
<p>This error is confusing as there does exist an implicit cast from the source to the target type in question.
And, on the face of it, code chunk (3) is doing the same thing as (1)
Also, it differs from (2) only by the type used to specialize the Lazy.</p>
<p>Can anyone explain to me what's going on here?</p>
http://stackoverflow.com/questions/1491160/bind-a-view-model-property-to-an-image/1491176#14911760Answer by mackenir for Bind a view model property to an imagemackenir2009-09-29T08:07:34Z2009-09-29T08:07:34Z<p>It looks like you want to implement a checkbox that looks different from the standard checkbox. In this case you could restyle the checkbox to have the look you're after. Then you could just bind the restyled checkbox to the underlying boolean value.</p>
<p><a href="http://stackoverflow.com/questions/305220/wpf-can-i-restyle-a-checkbox-template-so-that-the-checkindicator-is-a-red-cross">See also: this Stackoverflow question</a></p>
http://stackoverflow.com/questions/42908/where-is-the-chink-in-google-chromes-armor/1439507#14395070Answer by mackenir for Where is the chink in Google Chrome's armor??mackenir2009-09-17T15:14:45Z2009-09-17T15:14:45Z<p>Limitations of Chrome as I see it are: the lack of functionality, the lack of extensibility, the lack of an established 'library' of extensions.</p>
<p>Having said that, I'm actually using Chrome at the moment, as the latest version of Firefox is quite 'hangy'.</p>
http://stackoverflow.com/questions/1312563/why-is-thread-join-not-letting-through-com-messages2Why is Thread.Join not letting through COM messages? mackenir2009-08-21T15:12:40Z2009-08-26T11:47:45Z
<p>I am running some multi-threaded code that does the following.</p>
<ol>
<li>On an STA thread, I create a
'worker' thread, and run it. </li>
<li>The STA thread then waits for the worker
thread to exit.</li>
<li>The worker thread calls a method on a proxy to an STA COM
object on the STA thread, and then exits.</li>
</ol>
<p>In step 2, I'm using <code>Thread.Join()</code> to wait for the worker thread to exit.</p>
<p>The documentation for <code>Thread.Join()</code> states that it <strong>blocks the calling thread until a thread terminates, while continuing to perform standard COM and SendMessage pumping</strong>.</p>
<p>However, what happens is the worker thread blocks 'forever' on the COM call. The STA thread never services the COM call, while it is blocked on calling Thread.Join() on the worker thread.</p>
<p>I expected the STA thread to be able to service COM calls while blocked on Thread.Join.</p>
<p>Can anyone explain what might be happening here?
<hr/>
Here's the native callstack for the call to Thread.Join (ran VS in native code debugging mode, so differences may be due to not using WinDbg?):</p>
<pre><code>ntdll.dll!_KiFastSystemCallRet@0()
ntdll.dll!_ZwWaitForMultipleObjects@20() + 0xc bytes
kernel32.dll!_WaitForMultipleObjectsEx@20() - 0x51 bytes
user32.dll!_RealMsgWaitForMultipleObjectsEx@20() + 0xd7 bytes
ole32.dll!CCliModalLoop::BlockFn() + 0x8c bytes
ole32.dll!_CoWaitForMultipleHandles@20() - 0x382a bytes
mscorwks.dll!NT5WaitRoutine() + 0x39 bytes
mscorwks.dll!MsgWaitHelper() + 0x97 bytes
mscorwks.dll!Thread::DoAppropriateAptStateWait() + 0x51ae9 bytes
mscorwks.dll!Thread::DoAppropriateWaitWorker() + 0x104 bytes
mscorwks.dll!Thread::DoAppropriateWait() + 0x40 bytes
mscorwks.dll!Thread::JoinEx() + 0x77 bytes
mscorwks.dll!ThreadNative::DoJoin() + 0xa6 bytes
mscorwks.dll!ThreadNative::Join() + 0xa8 bytes
</code></pre>
<p>Here is the call stack shown in the <a href="http://dotnet.dzone.com/news/managed-synchronization-primit" rel="nofollow">article</a>, for STA threads that call Thread.Join:
It appears to diverge from what I'm seeing on the last call.</p>
<pre><code>ntdll!NtWaitForMultipleObjects+0xa
KERNEL32!WaitForMultipleObjectsEx+0x10b
USER32!RealMsgWaitForMultipleObjectsEx+0x129
USER32!MsgWaitForMultipleObjectsEx+0x46
ole32!CCliModalLoop::BlockFn+0xbb
ole32!CoWaitForMultipleHandles+0x145
mscorwks!NT5WaitRoutine+0x77
mscorwks!MsgWaitHelper+0xed
mscorwks!Thread::DoAppropriateAptStateWait+0x67
mscorwks!Thread::DoAppropriateWaitWorker+0x195
mscorwks!Thread::DoAppropriateWait+0x5c
mscorwks!Thread::JoinEx+0xa5
mscorwks!ThreadNative::DoJoin+0xda
mscorwks!ThreadNative::Join+0xfa
</code></pre>
<p>Here's the article's callstack for an MTA thread:</p>
<pre><code>ntdll!NtWaitForMultipleObjects+0xa
KERNEL32!WaitForMultipleObjectsEx+0x10b
mscorwks!WaitForMultipleObjectsEx_SO_TOLERANT+0xc1
mscorwks!Thread::DoAppropriateAptStateWait+0x41
mscorwks!Thread::DoAppropriateWaitWorker+0x195
mscorwks!Thread::DoAppropriateWait+0x5c
mscorwks!Thread::JoinEx+0xa5
mscorwks!ThreadNative::DoJoin+0xda
mscorwks!ThreadNative::Join+0xfa
</code></pre>
http://stackoverflow.com/questions/857465/how-to-display-validation-error-on-image-source0How to display validation error on Image.Source?mackenir2009-05-13T11:36:24Z2009-08-23T15:34:43Z
<p>I am binding an Image's Source property to a URI string property on the model:</p>
<pre><code><Image Validation.ErrorTemplate="{StaticResource validationTemplate}">
<Image.Source>
<Binding Path="LargeImage.ImageUri">
<Binding.ValidationRules>
<ExceptionValidationRule/>
</Binding.ValidationRules>
</Binding>
</Image.Source>
</Image>
<ControlTemplate x:Key="validationTemplate">
<Border BorderThickness="2" CornerRadius="2" BorderBrush="Red">
<AdornedElementPlaceholder/>
</Border>
</ControlTemplate>
</code></pre>
<p>I want the Image to display a red border when LargeImage.ImageUri isn't a valid image, but this isn't happening.</p>
<p>Is this because the problem is with converting the bound value, rather than with setting it?</p>
<p>I can see that an exception is thrown converting the string ImageUri to an ImageSource:</p>
<pre><code>System.Windows.Data Error: 18 : Cannot convert 'C:\not-an-image.txt' from type 'String' to type 'System.Windows.Media.ImageSource' for 'en-US' culture with default conversions; consider using Converter property of Binding. NotSupportedException:'System.NotSupportedException: No imaging component suitable to complete this operation was found. ---> System.Runtime.InteropServices.COMException (0x88982F50): Exception from HRESULT: 0x88982F50
--- End of inner exception stack trace ---
at MS.Internal.HRESULT.Check(Int32 hr)
at System.Windows.Media.Imaging.BitmapDecoder.SetupDecoderFromUriOrStream(Uri uri, Stream stream, BitmapCacheOption cacheOption, Guid& clsId, Boolean& isOriginalWritable, Stream& uriStream, UnmanagedMemoryStream& unmanagedMemoryStream, SafeFileHandle& safeFilehandle)
at System.Windows.Media.Imaging.BitmapDecoder.CreateFromUriOrStream(Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, RequestCachePolicy uriCachePolicy, Boolean insertInDecoderCache)
at System.Windows.Media.Imaging.BitmapFrame.CreateFromUriOrStream(Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, RequestCachePolicy uriCachePolicy)
at System.Windows.Media.ImageSourceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value)
at MS.Internal.Data.DefaultValueConverter.ConvertHelper(Object o, Type destinationType, DependencyObject targetElement, CultureInfo culture, Boolean isForward)'
System.Windows.Data Error: 6 : 'TargetDefaultValueConverter' converter failed to convert value 'C:\not-an-image.txt' (type 'String'); fallback value will be used, if available. BindingExpression:Path=LargeImage.ImageUri; DataItem='ItemSettings' (HashCode=60569775); target element is 'Image' (Name=''); target property is 'Source' (type 'ImageSource') NotSupportedException:'System.NotSupportedException: No imaging component suitable to complete this operation was found. ---> System.Runtime.InteropServices.COMException (0x88982F50): Exception from HRESULT: 0x88982F50
--- End of inner exception stack trace ---
at MS.Internal.Data.DefaultValueConverter.ConvertHelper(Object o, Type destinationType, DependencyObject targetElement, CultureInfo culture, Boolean isForward)
at MS.Internal.Data.TargetDefaultValueConverter.Convert(Object o, Type type, Object parameter, CultureInfo culture)
at System.Windows.Data.BindingExpression.ConvertHelper(IValueConverter converter, Object value, Type targetType, Object parameter, CultureInfo culture)'
</code></pre>
http://stackoverflow.com/questions/1299168/fast-filtering-of-a-string-collection-by-substring3Fast filtering of a string collection by substring?mackenir2009-08-19T11:01:05Z2009-08-19T18:09:23Z
<p>Do you know of a method for quickly filtering a list of strings to obtain the subset that contain a specified string? The obvious implementation is to just iterate through the list, checking each string for whether it contains the search string. Is there a way to index the string list so that the search can be done faster?</p>
http://stackoverflow.com/questions/605974/how-to-access-row-and-column-of-nodes-when-parsing-xml1How to access 'row' and 'column' of nodes when parsing XMLmackenir2009-03-03T11:11:30Z2009-08-15T21:13:16Z
<p>In C#, is there a way to work out an XmlNode's position in the original XML 'text', when the document is loaded from a file or string? I want to be able to report problems with an XML document that I am processing. </p>
<p>e.g:</p>
<p><strong><em>"Error in foo.xml - value of attribute 'pet' must be a species of fluffy mammal, at line 27, column 13 [snippet of original XML text here...]"</em></strong></p>
<p><strong>Edit:</strong>
The checks can't be done using schema validation. Here is another, less frivolous sample error message to illustrate: "specified addin type 'Addins.LogWindow' must be public"</p>
http://stackoverflow.com/questions/350885/create-sort-and-print-a-list-of-100-random-ints-in-the-fewest-chars-of-code/351090#3510904Answer by mackenir for Create, sort, and print a list of 100 random ints in the fewest chars of codemackenir2008-12-08T21:59:58Z2009-08-04T14:31:26Z<h1>C#</h1>
<pre><code>using System;
using System.Linq;
class A {
static void Main() {
var r=new Random();
new A[100].Select(i=>r.Next()).OrderBy(i=>i).ToList().ForEach(Console.WriteLine);
}
}
</code></pre>
<p><strong>EDIT</strong>: made complete program. assumes newlines and spaces could be removed, but left in for clarity :)</p>
<p><strong>EDIT</strong>: made even shorter.... I dare someone to improve this one... I've tried for an hour.</p>
<p><strong>EDIT</strong>: I think that's a bit shorter.</p>
<p><strong>EDIT</strong>: I think that's even more shorter. Ugh, make me stop.</p>
<p><strong>EDIT</strong>: One more line, one less character. Debatable...</p>
<p><HR/>
<strong>Explanation</strong></p>
<p><code>A[100]</code> - an array of any old thing - in this case A's (it's a nice short name). The contents are completely ignored, it's the size of the array that counts.</p>
<p><code>.Select(i=>r.Next())</code> - generates an enumerable of 100 values of r.Next().</p>
<p><code>.OrderBy(i=>i)</code> - sorts the previous in order.</p>
<p><code>.ToList()</code> - convert the sorted enumerable of int to a List, so we can use ForEach.</p>
<p><code>ForEach(Console.WriteLine)</code> - call Console.WriteLine 100 times, passing in each integer value in the list.</p>
http://stackoverflow.com/questions/1063542/what-classes-interfaces-should-every-net-developer-know/1063566#10635662Answer by mackenir for What classes/interfaces should every .net developer know?mackenir2009-06-30T13:04:12Z2009-06-30T13:04:12Z<p>System.String?</p>
http://stackoverflow.com/questions/980470/creating-a-transparent-corner-png-in-net/980511#9805111Answer by mackenir for Creating a transparent corner PNG in .netmackenir2009-06-11T11:08:04Z2009-06-11T11:08:04Z<p>You could draw the inverse, using a path.</p>
<p>This sample code draws a transparent quarter circle on black background:</p>
<pre><code> graphics.SmoothingMode = SmoothingMode.HighQuality;
var path = new GraphicsPath();
int radius = 30;
path.AddArc(-radius, -radius, radius * 2, radius * 2, 0, 90);
path.AddLine(0, radius, -radius, radius * 2);
path.AddLine(-radius, radius * 2, radius * 2, radius * 2);
path.AddLine(radius * 2, radius * 2, radius * 2, 0);
path.AddLine(radius*2, 0, radius, -radius);
path.CloseFigure();
graphics.FillPath(Brushes.Black, path);
</code></pre>
<p>If instead of a black background you want a bitmap background, then use the path to clip the drawing of the bitmap rather than to fill an area with a solid color.</p>
http://stackoverflow.com/questions/971445/can-i-load-more-than-one-comctl32-dll-into-a-process2Can I load more than one COMCTL32.dll into a process?mackenir2009-06-09T17:30:16Z2009-06-10T08:59:52Z
<p>I'm developing an ActiveX control which (these days) is used mostly in WinForms apps.</p>
<p>The ActiveX control has a 'property page' dialog, which can be shown programmatically using the ShowPropertyPages method on the AxHost class. This is the custom UI that can be brought up in Visual Studio to edit a control's properties.</p>
<p>This property page dialog contains a ListBox control which uses an ImageList to display icons next to list items. These icons are 32-bit alpha-blended bitmaps. In order for these to display properly, version <strong>6.0</strong> or above of COMCTL32.DLL must be used. </p>
<p>Unfortunately when I run my WinForms app, it loads and uses COMCTL32.DLL version <strong>5.xxx</strong>. As a result, when the property page dialog is displayed the icons look bad (the semi-transparent areas are drawn in solid black).</p>
<p>My question is: is there any way I can make sure to use COMCTL32.dll version 6.0+ from within the ActiveX control's property page UI, regardless of what the process is using? Or can I force the host process to use version 6.0? (I think not, because I am thinking the host process might have already loaded COMCTL32.DLL into memory before any of the code in the ActiveX control.</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms997646.aspx#xptheming%5Ftopic13" rel="nofollow">This webpage</a> covers some scenarios for using COMCTL32 6.0, but not the situation I am in. </p>
http://stackoverflow.com/questions/971445/can-i-load-more-than-one-comctl32-dll-into-a-process/974431#9744312Answer by mackenir for Can I load more than one COMCTL32.dll into a process?mackenir2009-06-10T08:59:52Z2009-06-10T08:59:52Z<p>The original MSDN article was confusing me because it focussed on a number of specific scenarios, none of which matched mine. In fact, the underlying technology it is talking about works more generally.</p>
<p>By <a href="http://msdn.microsoft.com/en-us/library/ms235512.aspx" rel="nofollow">adding a 'manifest' xml file</a> resource to the ActiveX DLL, I can signal to the side-by-side system that I want that DLL to use COMCTL32.DLL 6.x. That version is then loaded automatically. Pretty nice.</p>
<p>This manifest needs to be resource type <strong>RT_MANIFEST</strong>, with a resource ID of <strong>2</strong>.</p>
<p>Here's the evidence of success (two versions of the same DLL loaded in the same process!):
<img src="http://dl.getdropbox.com/u/714931/webimages/procexp%5Fcomctl32.png" alt="procexp screenshot showing two COMCTL32's loaded in process" /></p>
<p>(also, the icons display properly in the listbox <strong>;)</strong>)</p>
http://stackoverflow.com/questions/857732/how-can-i-get-a-bitmapimage-from-a-resource1How can I get a BitmapImage from a Resource?mackenir2009-05-13T12:41:01Z2009-05-13T16:26:39Z
<p>My assembly includes an image with BuildAction==Resource. I want to obtain a BitmapImage from this embedded resource. </p>
<p>I can load a BitmapImage from file like this:</p>
<pre><code>var bitmap = new BitmapImage(new Uri(path));
</code></pre>
<p>But how to I create a Uri that will refer to an embedded resource image?</p>
<p>When I try and create a '<a href="http://msdn.microsoft.com/en-us/library/aa970069.aspx" rel="nofollow">pack URI</a>' (for example <code>pack://application:,,,/MyImage.png</code> or <code>pack://application:,,,/MyAssembly;component/MyImage.png</code>), an exception is thrown: </p>
<p><strong>System.UriFormatException
"Invalid URI: A port was expected because of there is a colon (':') present but the port could not be parsed."</strong></p>
<p>I found the fix, to the UriFormatException in this <a href="http://compilewith.net/2009/03/wpf-unit-testing-trouble-with-pack-uris.html" rel="nofollow">blog post</a> </p>
<p>However, with that fix applied, I still get exceptions trying to load a BitmapImage from a pack URI. </p>
<p>When using the <code>pack://application:,,,/Image.png</code> format, I get a NullReferenceException, and when using the <code>pack://application:,,,/AssemblyName;component/Image.png</code> format, I get a NotSupportedException "The Uri prefix is not recognized".</p>
<p><hr /></p>
<p><strong>Summary</strong>
My problem was that I was trying to use a 'pack URI' in a process before any WPF control/window/etc had been instantiated, so the 'pack' URI scheme was not yet registered (other WPF required 'stuff' must also not be set too, because manually registering the pack scheme doesn't itself fix the problem). The solution was to wait until after instantiating my WPF usercontrol to use pack URIs.</p>
http://stackoverflow.com/questions/839697/do-i-need-to-secure-my-strong-name-key-file-for-an-open-source-project/839745#8397451Answer by mackenir for Do I need to secure my strong name key file for an open-source project?mackenir2009-05-08T13:16:40Z2009-05-08T13:16:40Z<p>I would say include a 'development' key in source control, to make building easier and avoid forcing people to faff around with creating and using their own key. The key in source control is meaningless security-wise, since anyone can sign with it. If people want to sign their build of your open-source project, they can substitute their key which they can manage any way they like.</p>
<p>You could also provide builds for download, signed with a secured key (that you don't give anyone), but for people to want to use these binaries they would need to trust you. Are you trustworthy? :)</p>
http://stackoverflow.com/questions/794414/how-can-i-make-a-partially-modal-dialog0How can I make a 'Partially' modal dialog?mackenir2009-04-27T17:08:07Z2009-04-28T19:50:30Z
<p>Is there a way to start off showing a dialog modally, but then instead of hiding it, to keep it visible while changing it to a non-modal dialog?</p>
<p>I want to show a dialog, blocking the method that shows the dialog. Then when the user clicks the 'Finish' button on the dialog I want:</p>
<ul>
<li>The dialog to remain visible. </li>
<li>Control to return to the method that showed the dialog.</li>
</ul>
<p>I've achieved this result by running the dialog on a separate STA thread, and using an event to block the main UI thread until 'Finish' is pressed, but there's a catch to this method: you can click on the close button of the 'main' window while the dialog is visible, and the main window closes when the dialog is hidden.</p>
<h1>Update</h1>
<p>Thanks for the responses so far. Sorry - it looks like I got the balance wrong between too much background and not enough.</p>
<p>The form is effectively a modal 'wizard' dialog - it appears, sits in front of the main app modally, and then is hidden. So as far as the user's concerned there's no non-standard weirdness going on. The only difference is that the dialog is driven from a series of callbacks from the UI thread, so I don't think making it truly modal (via a call to ShowDialog) for its lifetime would work. The first callback must show the dialog, and then block while the user sets their preferences via the dialog UI. After that, the dialog stays visible and displays a progress bar page while various other callbacks are made from the UI thread. Eventually the form is hidden. The user isn't interacting with the main window while the form is up. As far as they're concerned, it should appear to be 100% modal wrt the main UI thread.</p>
<p>(The form is a dialog for a Visual Studio wizard - these are driven from a series of callbacks on the UI thread). An alternative would be to show the dialog, hide it, immediately show a topmost 'progress' form instead and then hide that, but I think showing a single dialog is more seamless an experience for the user.</p>
<p>Again - sorry for the confusion!</p>
http://stackoverflow.com/questions/794414/how-can-i-make-a-partially-modal-dialog/797353#7973530Answer by mackenir for How can I make a 'Partially' modal dialog?mackenir2009-04-28T11:11:05Z2009-04-28T11:37:58Z<p>I found that showing an an invisible modal dialog on the main UI thread during the blocking stage of the interaction works great.</p>
<p>Hidden modal dialog settings (so it's not visible): ShowInTaskBar=false, FormBorderStyle=None, size={0,0}, Opacity=0%, StartupPosition=CenterParent.</p>
<p>The hidden dialog is shown on the UI thread using ShowDialog. The visible dialog is shown on a separate STA thread. The thread is kicked off before calling hiddenDialog.ShowDialog on the main UI thread.</p>
<p>The visible dialog hides hiddenDialog when it wants the initial blocking state to complete. This stops the main UI thread from blocking.</p>
<p>The important bits of code:</p>
<pre><code>void LaunchWizardForm(s)
{
// Show the wizard on its own thread.
ThreadStart t = () =>
{
_wizard = new WizardForm(s);
Application.Run(new ApplicationContext(_wizard));
};
var thread = new Thread(t);
thread.SetApartmentState(ApartmentState.STA);
thread.Start();
// Block this (main UI) thread
_hiddenForm.ShowDialog();
}
void EndModalEpisode()
{
_hiddenForm.Invoke((Action) (() => _hiddenForm.Hide()));
}
</code></pre>
http://stackoverflow.com/questions/782498/why-is-my-typeconverter-not-called0Why is my TypeConverter not called?mackenir2009-04-23T16:24:18Z2009-04-24T10:24:53Z
<p>I've applied a TypeConverterAttribute attribute to a property on my WPF FrameworkElement subclass. The property is of type BitmapSource.</p>
<p>But the TypeConverter is never created or called. Is this because the TypeConverter specified on ImageSource takes precedence?</p>
<p>I'm trying to debug a data binding problem. The error message, never makes mention of my TypeConverter class, suggesting that adding the attribute to the property has had no effect:</p>
<pre><code>System.Windows.Data Error: 6 : 'TargetDefaultValueConverter' converter failed to convert value '../SmallItemIcons/Gallery.png' (type 'String'); fallback value will be used, if available. BindingExpression:Path=SmallImage.ImageUri; DataItem='ItemSettings' (HashCode=32104365); target element is 'Bitmap' (Name=''); target property is 'Source' (type 'BitmapSource') IOException:'System.IO.IOException: Cannot locate resource 'smallitemicons/gallery.png'.
at MS.Internal.AppModel.ResourcePart.GetStreamCore(FileMode mode, FileAccess access)
at System.IO.Packaging.PackagePart.GetStream(FileMode mode, FileAccess access)
at System.IO.Packaging.PackWebResponse.CachedResponse.GetResponseStream()
at System.IO.Packaging.PackWebResponse.GetResponseStream()
at System.IO.Packaging.PackWebResponse.get_ContentType()
at System.Windows.Media.Imaging.BitmapDecoder.SetupDecoderFromUriOrStream(Uri uri, Stream stream, BitmapCacheOption cacheOption, Guid& clsId, Boolean& isOriginalWritable, Stream& uriStream, UnmanagedMemoryStream& unmanagedMemoryStream, SafeFileHandle& safeFilehandle)
at System.Windows.Media.Imaging.BitmapDecoder.CreateFromUriOrStream(Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, RequestCachePolicy uriCachePolicy, Boolean insertInDecoderCache)
at System.Windows.Media.Imaging.BitmapFrame.CreateFromUriOrStream(Uri baseUri, Uri uri, Stream stream, BitmapCreateOptions createOptions, BitmapCacheOption cacheOption, RequestCachePolicy uriCachePolicy)
at System.Windows.Media.ImageSourceConverter.ConvertFrom(ITypeDescriptorContext context, CultureInfo culture, Object value)
at MS.Internal.Data.DefaultValueConverter.ConvertHelper(Object o, Type destinationType, DependencyObject targetElement, CultureInfo culture, Boolean isForward)
at MS.Internal.Data.TargetDefaultValueConverter.Convert(Object o, Type type, Object parameter, CultureInfo culture)
at System.Windows.Data.BindingExpression.ConvertHelper(IValueConverter converter, Object value, Type targetType, Object parameter, CultureInfo culture)'
</code></pre>
http://stackoverflow.com/questions/751325/how-to-create-a-wpf-usercontrol-with-named-content/752618#7526183Answer by mackenir for How to create a WPF UserControl with NAMED contentmackenir2009-04-15T16:43:08Z2009-04-15T17:18:12Z<p>This guy found a <a href="http://blog.bluecog.co.nz/archives/2007/08/27/wpf-cannot-set-name-attribute/" rel="nofollow">solution</a> involving getting rid of his custom control's XAML file, and building the custom control's UI programmatically.</p>
<p>This <a href="http://rrelyea.spaces.live.com/Blog/cns!167AD7A5AB58D5FE!2130.entry?wa=wsignin1.0&sa=752255111" rel="nofollow">blog post</a> has more to say on the subject.</p>
http://stackoverflow.com/questions/1566234/sniffer-for-localhost-windows-os/1566248#1566248Comment by mackenir on Sniffer for localhost (Windows OS)mackenir2009-11-10T12:25:07Z2009-11-10T12:25:07ZI can't see a thing with Wireshark when it comes to localhost.http://stackoverflow.com/questions/84211/fade-splash-screen-in-and-out/84379#84379Comment by mackenir on Fade splash screen in and outmackenir2009-11-09T13:07:46Z2009-11-09T13:07:46ZHi @aarontfoley, I've taken the liberty of editing your answer to remove the mention of Opacity being a 'percentage', as it is contradicted by the text that follows (Opacity being a value between 0 and 1). Feel free to revert and make the change yourself, or not. I know how annoying it can be to have your answer edited by somebody else. Cheers.http://stackoverflow.com/questions/1681180/homework-question-in-c/1681214#1681214Comment by mackenir on Homework question in C++mackenir2009-11-05T15:21:35Z2009-11-05T15:21:35Z@Moayad yep I'll do that instea- d'oh!http://stackoverflow.com/questions/1681180/homework-question-in-c/1681214#1681214Comment by mackenir on Homework question in C++mackenir2009-11-05T15:19:47Z2009-11-05T15:19:47ZHah, I was about to post "It looks like your programming course is getting you down. Perhaps you're not cut out for this programming lark? There's always time for a change of direction." But I dont want Moayad to down-vote me...http://stackoverflow.com/questions/219401/is-there-an-easy-way-to-do-a-complete-migration-from-cvs-to-starteamComment by mackenir on Is there an easy way to do a complete migration from CVS to StarTeam?mackenir2009-11-04T13:59:14Z2009-11-04T13:59:14ZStarteam is a truly hellish source control system, but looking at the timestamp on this question, it's probably too late to save you from it...http://stackoverflow.com/questions/84211/fade-splash-screen-in-and-out/84379#84379Comment by mackenir on Fade splash screen in and outmackenir2009-11-04T12:55:18Z2009-11-04T12:55:18ZIf the timer were set to a fast 50ms, and Opacity is a percentage, then wouldn't this fade-out take about 8 minutes?http://stackoverflow.com/questions/1666496/c-casting-an-object-parameter-into-that-objects-typeComment by mackenir on C# - Casting an 'object' parameter into that object's type?mackenir2009-11-03T12:12:34Z2009-11-03T12:12:34ZHmm. Pigeon.Fly, Cat.Walk... It doesn't look like production code to me.
It could be that the example code given is just to illustrate roughly what he wants to do, and you can't infer potential design improvements from it. Sometimes you just need to down-cast.http://stackoverflow.com/questions/1660319/wpf-databind-dynamic-control-type/1660374#1660374Comment by mackenir on WPF - Databind dynamic control typemackenir2009-11-03T12:09:11Z2009-11-03T12:09:11ZYeah, I can't think of any theoretical problem with binding to public fields, but WPF data binding just doesnt support it. I have been hit by that before.http://stackoverflow.com/questions/1660319/wpf-databind-dynamic-control-type/1660374#1660374Comment by mackenir on WPF - Databind dynamic control typemackenir2009-11-02T17:42:38Z2009-11-02T17:42:38ZAlso, ProTip: take a look in the Output window of Visual Studio for any binding error messages.http://stackoverflow.com/questions/1660319/wpf-databind-dynamic-control-type/1660374#1660374Comment by mackenir on WPF - Databind dynamic control typemackenir2009-11-02T17:41:50Z2009-11-02T17:41:50Z@Dan, in your sample class, I would try making ControlType a 'full-on' C# property rather than a public field.http://stackoverflow.com/questions/1658574/proving-that-replacing-hardware-will-improve-developer-performance/1658615#1658615Comment by mackenir on Proving that replacing hardware will improve developer performance... mackenir2009-11-02T10:37:26Z2009-11-02T10:37:26ZIt's rank stupidity, isn't it. 2Gb of RAM is dirt cheap, and yet they want probably highly-paid people to waste time doing sums and measuring whether it's worth spending £20. The OP has my sympathies.http://stackoverflow.com/questions/1158805/what-is-the-com-context-referred-to-in-the-contextswitchdeadlock-mda-message/1623432#1623432Comment by mackenir on What is the 'COM context' referred to in the 'ContextSwitchDeadlock' MDA message?mackenir2009-10-26T09:51:04Z2009-10-26T09:51:04ZProbably reasonably accurate is good enough for me :)http://stackoverflow.com/questions/1607107/how-do-i-prevent-other-programmers-from-wrapping-my-assembly/1607163#1607163Comment by mackenir on How do I prevent other programmers from wrapping my assembly?mackenir2009-10-22T13:56:11Z2009-10-22T13:56:11ZI was gonna reply with a satirical answer: "[Obligatory cliched Stackoverflow answer saying how any form of copy protection or DRM is pointless]" but you beat me to it.http://stackoverflow.com/questions/1598083/what-is-a-windows-azure-compute-hourComment by mackenir on What is a Windows Azure Compute Hour?mackenir2009-10-21T00:29:43Z2009-10-21T00:29:43ZSo, if it uses 0% CPU for 24 hours on one CPU, that would be 24 compute hours. I was hoping it'd be closer to zero compute hours...http://stackoverflow.com/questions/1579023/design-of-an-alternative-fluent-interface-for-regular-expressionsComment by mackenir on Design of an Alternative (Fluent?) Interface for Regular Expressionsmackenir2009-10-16T16:33:29Z2009-10-16T16:33:29ZSome people, when confronted with a problem, think "I know, I'll use regular expressions." Now they have two problems. Then, they think - I'll wrap it up in a 'fluent' interface. Now they have three problems. ;-)