User Brian Leahy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T15:10:09Zhttp://stackoverflow.com/feeds/user/580http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/909338/what-is-the-worst-commit-message-you-have-ever-authored/1615560#16155601Answer by Brian Leahy for What is the WORST commit message you have ever authored?Brian Leahy2009-10-23T19:54:00Z2009-10-23T19:54:00Z<p>"Does anyone read this? I'll be at the coffee shop accross the street."</p>
http://stackoverflow.com/questions/59653/getting-at-the-listboxs-itemcontainer-when-data-binding2Getting at the Listbox's ItemContainer when data bindingBrian Leahy2008-09-12T18:11:28Z2009-09-30T22:29:08Z
<p>Is there a way to get at the ItemContaner of a selected item in a listbox? In Silverlight 2.0 Beta 1 I could, but the container is hidden in Beta 2 of Silverlight 2.0. </p>
<p>I'm trying to resize the listbox item when it is unselected to a specific size and when selected to a variable size. I also want to get the relative position of the selected item for animations. Growing to a variable size and getting the relative pasition is why i need to get to the listbox item.</p>
<p>I should clarify i'm not adding items to the listbox explicitly. I am using data binding in xaml and DataTemplates. What I have trouble accessing is the ItemContainer of the selected item's DataTemplate.</p>
http://stackoverflow.com/questions/11699/efs-encryption-key-pop-up0EFS encryption key pop upBrian Leahy2008-08-14T21:04:11Z2009-08-23T12:38:22Z
<p>I'm getting notifications to back up my encryption key for EFS in Vista, however i haven't enabled bit locker or drive encryption.</p>
<p>Anyone know how to find out what files may be encrypted or have an explanation for why it would notify me?</p>
http://stackoverflow.com/questions/1644/what-good-technology-podcasts-are-out-there/4073#40730Answer by Brian Leahy for What good technology podcasts are out there?Brian Leahy2008-08-06T22:30:28Z2009-08-20T19:51:29Z<p>My favorites are:</p>
<ul>
<li>Hanselminutes</li>
<li>.NET Rocks</li>
<li>StackOverflow</li>
<li>SoftwareEngeneeringRadio</li>
</ul>
<p>TWiT and CrankyGeeks I listen to if I want a laugh or get mad, they are horrible.</p>
http://stackoverflow.com/questions/8447/enum-flags-attribute15Enum Flags AttributeBrian Leahy2008-08-12T04:09:16Z2009-08-17T17:23:12Z
<p>Anyone have a good explanation or example they could post?</p>
<p>Edit: I changed the answer, this one is more in depth.</p>
http://stackoverflow.com/questions/46981/silverlight-databinding-cross-thread-issue3Silverlight DataBinding cross thread issueBrian Leahy2008-09-05T22:04:39Z2009-08-11T16:36:26Z
<p>I have an Image control with it's source bound to a property on an object(string url to an image). After making a service call, i update the data object with a new URL. The exception is thrown after it leaves my code, after invoking the PropertyChanged event.</p>
<p>The data structure and the service logic are all done in a core dll that has no knowledge of the UI. How do I sync up with the UI thread when i cant access a Dispatcher? </p>
<p>PS: Accessing Application.Current.RootVisual in order to get at a Dispatcher is not a solution because the root visual is on a different thread(causing the exact exception i need to prevent). </p>
<p>PPS: This only is a problem with the image control, binding to any other ui element, the cross thread issue is handled for you.</p>
http://stackoverflow.com/questions/12924/f-closure6F# ClosureBrian Leahy2008-08-16T00:35:27Z2009-06-11T05:43:29Z
<p>Anyone have a decent example, preferably practical/useful, they could post demonstrating the concept?</p>
http://stackoverflow.com/questions/20586/wpf-image-urisource-and-data-binding/20737#207376Answer by Brian Leahy for WPF Image UriSource and Data BindingBrian Leahy2008-08-21T18:38:50Z2009-05-14T10:13:24Z<p>BitmapImage UriSource is a stream, i think, and there isn't a built in converter for it.</p>
<p>WPF has built in converters for certain common bindings. If you bind the Image's Source to a string value, underneath the hood WPF will use a value converter to convert the string to a URI, and get the BitmapImage from that.</p>
<p>So if instead you did this:</p>
<pre><code><Image Source="{Binding ImageSource}" />
</code></pre>
<p>It would work (if the ImageSource property was a string representation of a valid uri to an image) </p>
<p>You can of course roll your own, and in Silverlight you need to because of issues the Image control has with Bindings:</p>
<pre><code>public sealed class ImageConverter : IValueConverter
{
public object Convert(object value, Type targetType,
object parameter, CultureInfo culture)
{
try
{
return new BitmapImage(new Uri((string)value));
}
catch
{
return new BitmapImage();
}
}
public object ConvertBack(object value, Type targetType,
object parameter, CultureInfo culture)
{
throw new NotImplementedException();
}
}
</code></pre>
http://stackoverflow.com/questions/35120/image-processing-in-silverlight-25Image processing in Silverlight 2Brian Leahy2008-08-29T19:35:44Z2009-05-13T18:13:17Z
<p>Is it possible to do image processing in silverlight 2.0?</p>
<p>What I want to do is take an image, crop it, and then send the new cropped image up to the server. I know I can fake it by clipping the image, but that only effects the rendering of the image. I want to create a new image.</p>
<p>After further research I have answered my own question. Answer: <strong>No</strong>. Since all apis would be in <a href="http://msdn.microsoft.com/en-us/library/system.windows.media.imaging.aspx" rel="nofollow">System.Windows.Media.Imaging</a> and that namespace does not have the appropriate classes in Silverlight</p>
<p>I'm going to use fjcore. <a href="http://code.google.com/p/fjcore/" rel="nofollow">http://code.google.com/p/fjcore/</a></p>
<p>Thanks <a href="http://beta.stackoverflow.com/users/585/jonas-folles" rel="nofollow">Jonas</a></p>
http://stackoverflow.com/questions/715883/navigate-all-items-in-a-wpf-tree-view0navigate all items in a wpf tree viewBrian Leahy2009-04-03T21:57:44Z2009-04-10T18:38:44Z
<p>I want to be able to traverse the visual ui tree looking for an element with an ID bound to the visual element's Tag property.</p>
<p>I'm wondering how i do this. Controls don't have children to traverse.</p>
<p>I started using LogicalTreeHelper.GetChildren, which seems to work as intended, up until i hit a TreeView control... then LogicalTreeHelper.GetChildren doesnt return any children. </p>
<p>Note: the purpose is to find the visual UI element that corresponds to the data item. That is, given an ID of the item, Go find the UI element displaying it. </p>
<p>Edit: I am apparently am not explaining this well enough. I am binding some data objects to a TreeView control and then wanting to select a specific item programaticly given that business object's ID. I dont see why it's so hard to travers the visual tree and find the element i want, as the data object's ID is in the Tag property of the appropriate visual element. I'm using Mole and I am able to find the UI element with the appropriate ID in it's Tag. I just cannot find the visual element in code. LogicalTreeHelper does not traverse any items in the tree. Neither does ItemContainerGenerator.ContainerFromItem retrieve anything for items in the tree view.</p>
http://stackoverflow.com/questions/675333/data-binding-update-when-value-changes-not-when-tabbing-out0data binding update when value changes, not when tabbing outBrian Leahy2009-03-23T21:36:02Z2009-03-24T07:53:58Z
<p>Is there a property or setting to force a bound control in Winforms to update the object it is bound to when the input value, either in a textbox or whatever, actually changes? </p>
<p>And not after the control is tabbed out of. </p>
http://stackoverflow.com/questions/603574/how-do-you-change-the-background-color-of-a-row-based-on-a-value-when-databinding1How do you change the background color of a row based on a value when databinding to a GridView?Brian Leahy2009-03-02T19:13:47Z2009-03-04T21:34:25Z
<p>When databinding to an ASP .NET GridView, how does one change the background color, based on a boolean value that is a column in the data table that the GridView is bound?</p>
<p>For instance if you are bound to a table that has two columns: Name, LikesBurritos. And you want to have the labels of people's names be Blue if they like burritos and white if they don't. </p>
<p>Iterating through the data table or list of objects defeats the purpose of databinding... And there are lots of places we use databinding for the express point of not coding the add of every column while iterating through the set. I'm curious if you can do this declaritivly by using an expresion in the markup...</p>
http://stackoverflow.com/questions/8452/i-dont-grok-the-wpf-command-pattern10I don't grok the WPF command patternBrian Leahy2008-08-12T04:18:30Z2009-03-03T09:45:23Z
<p>I've done some WPF programing and one thing I never got was the command pattern. Every example seems to be for built in ones, edit, cut, paste. Anyone have an example or suggestion of best practice for custom commands?</p>
http://stackoverflow.com/questions/23277/what-is-the-difference-between-procedural-programming-and-functional-programming/23385#233850Answer by Brian Leahy for What is the difference between procedural programming and functional programming?Brian Leahy2008-08-22T20:23:21Z2009-02-16T14:10:18Z<p>To expand on Konrad's comment:</p>
<blockquote>
<p>and the order of evaluation is not
well-defined</p>
</blockquote>
<p>Some functional languages have what is called Lazy Evaluation. Which means a function is not executed until the value is needed. Until that time the function itself is what is passed around.</p>
<p>Procedural languages are step 1 step 2 step 3... if in step 2 you say add 2 + 2, it does it right then. In lazy evaluation you would say add 2 + 2, but if the result is never used, it never does the addition.</p>
http://stackoverflow.com/questions/392473/how-do-you-add-an-existing-directory-tree-to-a-project-in-visual-studio3how do you add an existing directory tree to a project in visual studioBrian Leahy2008-12-25T03:17:13Z2008-12-25T03:48:19Z
<p>So the issue is simple really, instead of creating folders in visual studio, i create a directory structure for my project on the file system. How to i include all the folders and files in a project, keeping the structure?</p>
<p>If i "Add Existing File" on a folder named Services and navigate to a file in the directory structure .. Services > AccountManagement > CreateAccount.cs it appears in visual studio like so : Services > CreateAccount.cs. I do not want this.</p>
<p>I have an entire directory structure worked out already, as I am mimicking our client developers using the same structure for organization. How do i add all the folders and files to the project in Visual Studio? Or do i have to do what most MS users do and "put up with it" and recreate each and every folder through visual studio?</p>
http://stackoverflow.com/questions/392414/how-to-decide-whether-i-should-use-air-or-titanium/392485#3924850Answer by Brian Leahy for How to decide whether I should use AIR or Titanium?Brian Leahy2008-12-25T03:35:30Z2008-12-25T03:35:30Z<p>Neither, as both technologies are for creating desktop applications not RIAs.</p>
<p>Now if you were to ask how should you build your RIA... so that when, if, it comes to a point of you making a desktop version, which technology should you use, Flex or Javascript/HTML?</p>
<p>The answer becomes obvious once you decide between Flex or Javascript/HTML. If you do Flex then your desktop application will be in AIR; If you do Javascript/HTML your Descktop app will be in Titanium.</p>
<p>My suggestion, go with Flex - Air. Both are environments where State is made easy. Flex are written much like client (desktop) applications anyway as they have state.</p>
http://stackoverflow.com/questions/8448/f-curried-function6F# curried functionBrian Leahy2008-08-12T04:11:15Z2008-11-25T19:15:05Z
<p>Anyone have a decent example, preferably practical/useful, they could post demonstrating the concept?</p>
http://stackoverflow.com/questions/263448/cron-jobs-change-time-after-dst/263524#2635241Answer by Brian Leahy for cron jobs change time after DSTBrian Leahy2008-11-04T21:34:16Z2008-11-04T21:34:16Z<p>If you are converting UTC into local time(correctly) and the job is for a non-DST timezone, like Arizona, it will run an hour later, relative to your server.</p>
http://stackoverflow.com/questions/200467/online-game-macromedia-flash-or-microsoft-silverlight-and-why/262772#2627721Answer by Brian Leahy for Online game: Macromedia Flash or Microsoft Silverlight and why?Brian Leahy2008-11-04T18:10:48Z2008-11-04T18:10:48Z<p>Microsoft is new to the Designer space. Adobe is, comparitively, green in the developer tool space. </p>
<p>Is your shope full of Artists or Developers? Which tools do you need more? Your Core competency is what will determine which to use.</p>
http://stackoverflow.com/questions/244130/does-silverlight-code-need-protection/244230#2442300Answer by Brian Leahy for Does silverlight code need protection?Brian Leahy2008-10-28T18:04:18Z2008-10-28T23:52:05Z<p>Putting a pragma -No Cache- will prevent the .xap from being stored on the machine, instead it will be streamed by the Silverlight plugin. Without the pragma the .xap file is stored in the temp internet files.</p>
<p>Putting the application on a page on https will further protect the transmition of the .xap</p>
<p>If possible require authentication to view the web page / .xap file (thanks Joel)</p>
http://stackoverflow.com/questions/229011/aynchronous-web-server-calls-in-silverlight-and-maximum-http-connections/244290#2442902Answer by Brian Leahy for Aynchronous web server calls in Silverlight and maximum HTTP connectionsBrian Leahy2008-10-28T18:20:25Z2008-10-28T18:20:25Z<p>In IE (haven't tested others) Silverlight is restricted to 2 connections at a time. </p>
<p>The behavior in Silverlight is to simply not make the request. So if you make 5 Async web service requests right in a row, the first 2 will happen, the other three won't. No exception is thrown that i've seen... </p>
<p>Fiddler is a big help here :)</p>
http://stackoverflow.com/questions/234064/net-databinding-a-new-object-with-value-type-properties/244267#2442670Answer by Brian Leahy for .Net DataBinding a new object with value type propertiesBrian Leahy2008-10-28T18:14:47Z2008-10-28T18:14:47Z<p>After you have your converter in place, you also need to impliment INotifyPropertyChanged on the Person object. That way you can set the binding's Mode=TwoWay two way databinding will update the value in the object when a change is made on the textbox, and vis a vis.</p>
http://stackoverflow.com/questions/17524/what-is-so-great-about-subversion/17545#1754520Answer by Brian Leahy for What is so great about subversion?Brian Leahy2008-08-20T07:56:42Z2008-10-28T18:01:03Z<p>CheckOut/Check in royally bites when you need to fix a bug, but someone else is working on the file.</p>
<p>It also stinks when someone checks out oh a project file or a web config. I found myself constantly needing to go to the file system and make something like the project not read only so I could add things. Then I would be in a world of hurt because there was no merge in source safe, so if I waited to check in my version, it would over write someone's changes, since last one in wins. If i let the other project overwrite mine, i would have to re-add all the class files. There was a constant: tap tap tap "can you check in xyz"? </p>
<p>All conflicts/merging I've had using subversion have been easy to fix. After an update, look at the diff and decide what to do from there. Easy. The gains far outway any issue with binaries, which i hope are images/media files and not dll's and exes. </p>
<p>You shouldn't have to work around your version control system.</p>
<p>Oh I should mention <a href="http://tortoisesvn.tigris.org/" rel="nofollow">Tortoise</a> is seriously awesome.</p>
<p>So is Visual SVN, a visual studio plug-in.</p>
http://stackoverflow.com/questions/185307/silverlight-2-0-rc-drag-and-drop-ordering-of-a-listbox/185437#1854371Answer by Brian Leahy for Silverlight 2.0 RC Drag and drop ordering of a ListBoxBrian Leahy2008-10-09T00:06:06Z2008-10-09T00:06:06Z<p>As far as i know you cannot get at the listbox item container when using data binding. YOu could in Beta 1. </p>
<p>You also cannot set a mouse event handler in the style, you must use a data template, just so you know. </p>
<p>You will likely have to use the mouse move event from a parent element, probably the UserControl or main layout control that hosts the listbox.</p>
<p>State changes and animations need to be in the style though so... you still cant get at the listbox item, just the element inside it in the data template.</p>
<p>Oh and if doing drag and drop HitTest is now protected so that will make the Drop harder. </p>
http://stackoverflow.com/questions/180963/how-do-you-package-up-silverlight-dlls-into-a-xap-file0how do you package up silverlight dlls into a xap file?Brian Leahy2008-10-08T00:36:48Z2008-10-08T15:41:59Z
<p>Just updated build server with rc0 and surprise no chiron. Wondering how you package up a xap file without chiron.</p>
http://stackoverflow.com/questions/180777/prevent-silverlight-listbox-vertical-scrollbar-from-being-displayed/180824#1808243Answer by Brian Leahy for Prevent Silverlight ListBox vertical scrollbar from being displayedBrian Leahy2008-10-07T23:30:08Z2008-10-07T23:30:08Z<pre><code> <ListBox ScrollViewer.VerticalScrollBarVisibility="Auto" />
</code></pre>
<p>the default is visible </p>
http://stackoverflow.com/questions/171962/ageparserbadpropertyvalue-for-staticresource-in-silverlight/179607#1796071Answer by Brian Leahy for AG_E_PARSER_BAD_PROPERTY_VALUE for StaticResource in SilverlightBrian Leahy2008-10-07T17:49:16Z2008-10-07T17:49:16Z<p>Parser, at least in beta 2, didnt like whitespace...</p>
<p>For instance: </p>
<pre><code>Text="{StaticResource bleh}"
</code></pre>
<p>worked</p>
<p>however this:</p>
<pre><code>Text = "{StaticResource bleh}"
</code></pre>
<p>bombed</p>
http://stackoverflow.com/questions/148752/silverlight-and-rails/149975#1499752Answer by Brian Leahy for Silverlight and RailsBrian Leahy2008-09-29T18:16:51Z2008-09-29T18:16:51Z<p>If you need the application to run offline you will want to use a pure client technology. So instead of Silverlight vs Flex you are looking at WPF vs AIR.</p>
<p>Silverlight and Flex are thin client technologies so neither would fit into RoR very well, unless you used RoR to build web services. </p>
http://stackoverflow.com/questions/135299/sprite-character-animation-in-silverlight-v2/135355#1353550Answer by Brian Leahy for Sprite / Character animation in Silverlight (v2)Brian Leahy2008-09-25T19:14:52Z2008-09-25T19:14:52Z<p>Silverlight at this time does not support bitmap effects nor has any libraries to manipulate the images. Your option now is to use keyframe animations from one png to another.</p>
<p>Now you can get at the raw bytes of an image. If you have your own image processing libraries you can compile them with the Silverlight dlls and then use the library in your Silverlight app.</p>
http://stackoverflow.com/questions/122278/silverlight-development-visual-studio-2008-vs-expression-blend/123825#1238251Answer by Brian Leahy for Silverlight development [Visual Studio 2008 vs Expression Blend]Brian Leahy2008-09-23T20:57:27Z2008-09-23T20:57:27Z<p>You will want blend for prototyping animations, making templates, changing colors. I don't use it everyday, once you put in a valueconverter it renders that element unrenderable.</p>
<p>To do anything with Blend I create a new project in Blend, mock up what i want and cut the xaml out. So it's rare that I use it.</p>
<p>You don't NEED it though. Get the June preview or get it from MSDN, but dont go and buy it. If you get the preview you can use it for learning animations and xaml. After you work with xaml enough it's faster to go to the xaml and not use any of the tools.</p>
<p>Designers use Adobe products and Macs... So the only thing you NEED is a converter.</p>
http://stackoverflow.com/questions/879289/wpf-and-silverlight-view-states-and-triggers/879337#879337Comment by Brian Leahy on wpf and silverlight / view states and triggersBrian Leahy2009-05-19T23:21:34Z2009-05-19T23:21:34Zi seriously wish they would go the opposite direction, adding triggers to silverlight.http://stackoverflow.com/questions/883895/what-are-the-problems-of-the-mvvm-pattern/883923#883923Comment by Brian Leahy on What are the problems of the MVVM pattern?Brian Leahy2009-05-19T22:56:17Z2009-05-19T22:56:17Zwhich don't really existhttp://stackoverflow.com/questions/35120/image-processing-in-silverlight-2/859504#859504Comment by Brian Leahy on Image processing in Silverlight 2Brian Leahy2009-05-18T23:37:06Z2009-05-18T23:37:06Zbummer, they scrapped silverlight for that project.http://stackoverflow.com/questions/715883/navigate-all-items-in-a-wpf-tree-view/722552#722552Comment by Brian Leahy on navigate all items in a wpf tree viewBrian Leahy2009-04-08T16:25:07Z2009-04-08T16:25:07ZThe items property are the data items not visual. I can then get the data item and ask for the cooresponding Visual Item, then i need to walk the Visual Item's Items property, which is the data items. This isn't working, I just want to walk the visual tree... so lamehttp://stackoverflow.com/questions/8452/i-dont-grok-the-wpf-command-pattern/8534#8534Comment by Brian Leahy on I don't grok the WPF command patternBrian Leahy2009-03-02T19:00:10Z2009-03-02T19:00:10ZComments didnt exist when this was postedhttp://stackoverflow.com/questions/128352/when-developing-do-you-turn-off-uac-in-vista/139093#139093Comment by Brian Leahy on When developing, do you turn off UAC in Vista?Brian Leahy2008-10-29T23:55:45Z2008-10-29T23:55:45Ztry running visual studio as adminhttp://stackoverflow.com/questions/128352/when-developing-do-you-turn-off-uac-in-vista/128668#128668Comment by Brian Leahy on When developing, do you turn off UAC in Vista?Brian Leahy2008-10-29T23:54:00Z2008-10-29T23:54:00Zi too run no anti virus.http://stackoverflow.com/questions/248072/evil-use-of-extension-methodsComment by Brian Leahy on Evil use of extension methods?Brian Leahy2008-10-29T22:54:22Z2008-10-29T22:54:22Z+1 , I'm stealing ideahttp://stackoverflow.com/questions/237044/how-does-silverlight-determine-an-assembly-is-silverlight/245116#245116Comment by Brian Leahy on How does Silverlight determine an assembly is "Silverlight"?Brian Leahy2008-10-28T23:29:26Z2008-10-28T23:29:26ZI Can't wait to give it a try! http://stackoverflow.com/questions/237044/how-does-silverlight-determine-an-assembly-is-silverlightComment by Brian Leahy on How does Silverlight determine an assembly is "Silverlight"?Brian Leahy2008-10-28T18:07:26Z2008-10-28T18:07:26Zsame here, i love F#http://stackoverflow.com/questions/227823/how-to-handle-a-stupid-user/227882#227882Comment by Brian Leahy on How to handle a "stupid user"Brian Leahy2008-10-22T23:43:07Z2008-10-22T23:43:07Zsome people are incapable or unwilling to learn. the OP describes this guy as opening files and rearranging data that is supposed to be in a particular format.http://stackoverflow.com/questions/35120/image-processing-in-silverlight-2/35131#35131Comment by Brian Leahy on Image processing in Silverlight 2Brian Leahy2008-10-08T18:21:55Z2008-10-08T18:21:55Zwe are currently implementing this as plan B. it would be nice to do the processing on the client though, it would save lots of resources.http://stackoverflow.com/questions/180963/how-do-you-package-up-silverlight-dlls-into-a-xap-file/181192#181192Comment by Brian Leahy on how do you package up silverlight dlls into a xap file?Brian Leahy2008-10-08T18:16:01Z2008-10-08T18:16:01Zi did see that in my research but other research showed it hadn't been updated for rc0, so it will output the version number of beta 2 in the manifest. We could use that and manually change the version numbers i guess...http://stackoverflow.com/questions/124002/why-is-software-support-for-bidirectional-text-hebrew-arabic-so-poor/124101#124101Comment by Brian Leahy on Why is software support for Bidirectional text (Hebrew,Arabic) so poor?Brian Leahy2008-09-23T22:56:38Z2008-09-23T22:56:38ZCertain Languages are bidirectional when writen. That is normal reading takes place Right to Left, however Numbers are read Left to Right.
If english were bidirectional:
There are 01 cows.
would read: There are ten cows.
http://stackoverflow.com/questions/104270/flash-vs-silverlight/104300#104300Comment by Brian Leahy on Flash vs. SilverlightBrian Leahy2008-09-23T21:10:44Z2008-09-23T21:10:44ZNot the answer you are looking for. Does not answer Techincal limitations or benifits. Question is for in house application so install base does not matter. Also if nokia does well with it's silverlight support, the install base will jump by a few million.