//This drove me crazy for about half an hour…
I attached this style to a button
<Style x:Key=”NavButtonStyle” TargetType=”Button”>
<Setter Property=”Opacity” Value=”0.8″></Setter>
<Setter Property=”Template”>
<Setter.Value>
<ControlTemplate>
[...]
//You can retrieve the list of tasks in your Outlook 2007 using the following code
Dim ns As Outlook.NameSpaceDim tasks As Outlook.Itemsns = Application.GetNamespace(”MAPI”)tasks = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderTasks).Items
Dim task As ObjectFor Each task In tasks ‘ iterate through the tasks hereNext
Related PostsSynchronize Outlook Tasks with Remember the MilkOutlook 2007 is by far the best integrated solution for organizing [...]
//I need your help to bring me fame and fortune.
I wrote an article at code project which was entered for a competition. The winner gets $10k. Can you please check it out at http://www.codeproject.com/KB/WCF/myfeedreader.aspx and if you like it, please vote for it. I can’t win if you don’t vote. Voting will be closed on [...]
//Here is the scenario, I have collection of books and I want to get a book with a specific ISBN. In the old ways, you will probably have to create a custom collection and inherit a generic collection of books, then add a method to get by ISBN.
Thanks to LINQ and extension methods, you can [...]
//If you are creating any type of software applications with a user interface, most likely you will need to use icons. Here is an excellent site to help you find icons for your web sites and applications.
Check http://www.iconfinder.net/
Related PostsFree image editing applicationHere is a great and free image editing software called Paint.NET. I am [...]
//I added a macromedia flash animation (swf) to my asp.net website and it would work fine but when it came to display video it would stop. I figured it had to do with the video files i.e. the FLV file. It turns out that I had to add its MIME type to IIS
//Check out this site which lets you create HTML formatted with syntax highlighting for your code snippets. Very helpful when posting to your blog or creating HTML versions of your code. It supports all kind of languages, xml, php, c#, vb.net, css, html and others - even XAML. The site is http://FormatMyCode.com