mackenir
|
Registered User
|
|
|
18h |
awarded | ● Mortarboard |
|
2d |
awarded | ● Popular Question |
|
Dec 3 |
asked | Why does Silverlight treat localhost and 127.0.0.1 differently? |
|
Nov 30 |
awarded | ● Popular Question |
|
Nov 20 |
accepted | Use .NET COM in vb6 |
|
Nov 10 |
revised |
ASP.NET MVC Routing to serve a file at website ‘top level’? added 128 characters in body |
|
Nov 10 |
asked | ASP.NET MVC Routing to serve a file at website ‘top level’? |
|
Nov 10 |
comment |
Sniffer for localhost (Windows OS) I can't see a thing with Wireshark when it comes to localhost. |
|
Nov 9 |
comment |
Fade splash screen in and out Hi @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. |
|
Nov 9 |
revised |
Fade splash screen in and out removed the reference to Opacity being a 'percentage'. |
|
Nov 4 |
comment |
Is there an easy way to do a complete migration from CVS to StarTeam? Starteam 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... |
|
Nov 4 |
comment |
Fade splash screen in and out If the timer were set to a fast 50ms, and Opacity is a percentage, then wouldn't this fade-out take about 8 minutes? |
|
Nov 3 |
comment |
C# - Casting an ‘object’ parameter into that object’s type? Hmm. 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. |
|
Nov 3 |
comment |
WPF - Databind dynamic control type Yeah, 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. |
|
Nov 3 |
accepted | WPF - Databind dynamic control type |
|
Nov 2 |
comment |
WPF - Databind dynamic control type Also, ProTip: take a look in the Output window of Visual Studio for any binding error messages. |
|
Nov 2 |
comment |
WPF - Databind dynamic control type @Dan, in your sample class, I would try making ControlType a 'full-on' C# property rather than a public field. |
|
Nov 2 |
comment |
Proving that replacing hardware will improve developer performance… It'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. |
|
Nov 2 |
revised |
WPF - Databind dynamic control type added 151 characters in body |
|
Nov 2 |
answered | WPF - Databind dynamic control type |
|
Oct 31 |
accepted | Why isnt WPF displaying an accented character correctly? |
|
Oct 31 |
awarded | ● Disciplined |
|
Oct 29 |
revised |
How can I take the output of a shell script and place it in a file on the command line? edited title |
|
Oct 26 |
comment |
What is the ‘COM context’ referred to in the ‘ContextSwitchDeadlock’ MDA message? Probably reasonably accurate is good enough for me :) |
|
Oct 22 |
comment |
How do I prevent other programmers from wrapping my assembly? I 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. |
|
Oct 21 |
comment |
What is a Windows Azure Compute Hour? So, 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... |
|
Oct 21 |
asked | What is a Windows Azure Compute Hour? |
|
Oct 16 |
comment |
Design of an Alternative (Fluent?) Interface for Regular Expressions Some 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. ;-) |
|
Oct 15 |
awarded | ● Popular Question |
|
Oct 9 |
comment |
Syntax error missing ; before * Without seeing all the headers, this would be my guess too, Naveen. |
|
Oct 9 |
comment |
Syntax error missing ; before * You can debug #include ordering problems by outputting debug messages during compilation with e.g. #pragma message("Here's class ExitListener..."). |
|
Oct 9 |
comment |
Syntax error missing ; before * Could be a #include ordering problem too. |
|
Oct 9 |
comment |
Syntax error missing ; before * Ah, I can see the problem there, in ExitListener.h. |
|
Oct 7 |
revised |
Why isnt WPF displaying an accented character correctly? edited tags |
|
Oct 7 |
answered | Why isnt WPF displaying an accented character correctly? |
|
Oct 7 |
comment |
Why isnt WPF displaying an accented character correctly? ListBox surely accepts the format that a System.String is in (Unicode?). The weird thing is that the VS debugger UI is fine with the string. It is maybe a problem with the download from the web. |
|
Oct 7 |
comment |
Why isnt WPF displaying an accented character correctly? The string is extracted from a webpage, so manually editing it isn't a solution. |
|
Oct 7 |
comment |
How can I call the ‘base implementation’ of an overridden virtual method? (Hi. Just for the record, somebody deleted the 'stupid-trick's tag that I added, and then somebody else deleted the comment pointing it out, making it look like I really want/need to do this. Would be useful to get notified of the dumb edits that people seem to want to make on SO.) |
|
Oct 7 |
asked | Why isnt WPF displaying an accented character correctly? |
|
Oct 7 |
awarded | ● Yearling |
|
Oct 5 |
comment |
Why doesn’t this use of implicit casts work? Still completely mystified by what 'encompassing' means. |
|
Oct 2 |
comment |
Why doesn’t this use of implicit casts work? (should it now say Lazy<T> instead of List<T> throughout the answer?) |
|
Oct 2 |
comment |
Why doesn’t this use of implicit casts work? Thanks! People, upvote this man. |
|
Oct 2 |
comment |
Why doesn’t this use of implicit casts work? To be precise, now the compiler is complaining that there's no implicit cast from Lazy<T> to T, where T==IList<string>.
Even though I went and edited the question, it may be the case that your answer still holds, in which case I'll need to go an research what 'encompassing' is in order to understand the answer :) |
|
Oct 2 |
comment |
Why doesn’t this use of implicit casts work? The weird thing is, the compile error still happens when List is replaced with IList (apart from where an instance of List is constructed and returned from a method that returns IList. |
|
Oct 2 |
revised |
Why doesn’t this use of implicit casts work? Fixed typos |
|
Oct 2 |
comment |
Is Google Wave noisy? is it a productivity killer? I have been spending a lot of time googling for and reading about Google Wave, so yeah it's a productivity killer. Is this a programming question? |
|
Oct 2 |
asked | Why doesn’t this use of implicit casts work? |
|
Sep 29 |
accepted | Bind a view model property to an image |
|
Sep 29 |
answered | Bind a view model property to an image |
