bradygaster

Stories kicked by friends of bradygaster

An Xml Serializable PropertyBag Dictionary Class for .NET(www.west-wind.com)

submitted by diamondzdiamondz(75) 7 months, 18 days ago

How to create a PropertyBag object which you can serialize to XML. read more...

5 comments |category: |Views: 57

tags: another

Translating with Google Translate without API and C# Code(www.west-wind.com)

submitted by jch0001jch0001(145) 9 months, 19 days ago

Google Translate without API and C# Code read more...

add a comment |category: |Views: 22

tags: another

Building a jQuery Plug-in to make an HTML Table scrollable(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 11 months, 28 days ago

Table displays in limited space require some rendering alternatives. While paging is a common way to address fixed size displays, it's not an end-all solution. Sometimes it's necessary to display larger amounts of data in a small fixed space on an HTML page. Scrollable list are fairly easy to do with most HTML structures, but HTML tables are notoriously difficult to manage when it comes to scrolling. In this post I describe a jQuery plug-in that attempts to make any table scrollable by decomposing and reassembling the table into two distinct areas. read more...

add a comment |category: |Views: 31

tags: another

Built-in GZip/Deflate Compression on IIS 7.x(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year ago

IIS 7.x makes content compression via GZip very easy. Here's how compression on IIS works and how you can set it up on your server in a few simple steps. read more...

add a comment |category: |Views: 40

tags: another

ASP.NET GZip Encoding Caveats(www.west-wind.com)

submitted by rstrahlrstrahl(7226) 1 year ago

GZip and Deflate compression is easy to use in ASP.NET applications, but there are a few caveats that you need to watch out for. This post reviews the basics of implementing compression in ASP.NET code and describes a couple of scenarios that can cause problems when using programmatic compression via Response.Filter. read more...

add a comment |category: |Views: 7

tags: another

Replacing .NET Reflector(www.blackbeltcoder.com)

submitted by scwebgroupscwebgroup(332) 1 year ago

Good news for .NET developers who are unhappy with what Red Gate is doing with this must-have tool read more...

add a comment |category: |Views: 200

tags: another

Introducing JustTrace and JustDecompile (blogs.telerik.com)

submitted by KodefuGuruKodefuGuru(2818) 1 year ago

Have you heard the news? New productivity tools have Just™ arrived, and it turns-out good things come in twos! JustTrace and JustDecompile have just been revealed and the betas are immediately available for download. read more...

add a comment |category: |Views: 54

tags: another

Building a better MessageBox for WP7 with the help of XNA.(michaelcrump.net)

submitted by mbcrumpmbcrump(1034) 1 year, 1 month ago

I’ve recently had the requirement to allow my user to choose between two items in my Windows Phone 7 application. The first way that I thought of tackling this was using the standard MessageBox.Show that is included with the System.Windows class and seeing if the enum provided a way to allow custom text. read more...

add a comment |category: |Views: 30

tags: another

How to use ExpandoObject Class in .NET 4.0(www.codegain.com)

submitted by codegaincodegain(2794) 1 year, 1 month ago

In this article, i will explain how to use the How to use ExpandoObject Class in .NET 4.0.The ExpandoObject class is introduced on .NET Framework 4.0 and inherited using many interfaces. read more...

add a comment |category: |Views: 71

tags: another

Afterthought: a post-compilation code injection framework(blogs.app.vc3.com)

submitted by kr4sterkr4ster(34) 1 year, 1 month ago

Afterthought allows developers to post-process .NET assemblies to add code that either cannot be added to the original source or is not convenient/efficient to do so. Examples include: Tweaking a compiled assembly for which you do not have the source code be must support/modify Adding instrumentation logic to an assembly for test purposes, which will not always be part of the release version So, what does Afterthought do? Quite simply, it allows you to: Create type amendments by subclassing Amendment<,> to describe what changes you want to make Add attributes to your types indicating which types to amend and what amendments to apply Amend properties by either adding new properties or modifying the logic of existing properties Amend methods by either adding new methods or modifying the logic of existing methods Amend constructors by either adding new constructors or modifying the logic of existing constructors Implement interfaces directly on a type leveraging existing properties/methods, adding new properties/methods, and allowing Afterthought to automatically implement everything else Configure your project to call Afterthought as a post-build step to apply the changes read more...

add a comment |category: |Views: 461

tags: another

Rounded Corners and Shadows(www.west-wind.com)

submitted by jiltedcitizenjiltedcitizen(563) 1 year, 1 month ago

Well, it looks like we’ve finally arrived at a place where at least all of the latest versions of main stream browsers support rounded corners and box shadows. The two CSS properties that make this possible are box-shadow and box-radius. Both of these CSS Properties now supported in all the major browsers as shown in this chart from QuirksMode: read more...

add a comment |category: |Views: 88

tags: another

WPF Single Instance Application – Update - Arik Poznanski's Blog(blogs.microsoft.co.il)

submitted by arikparikp(1204) 1 year, 1 month ago

Back in this post I’ve presented some code that make sure you only have one instance of your application. read more...

add a comment |category: |Views: 25

tags: another

5 of the best online code editors for fans of the cloud(blog.webdistortion.com)

submitted by squiggssquiggs(585) 1 year, 1 month ago

This collection of cloud based code editors has been created with developers in mind, and perfectly showcases just how far software has come. Checkout CodeRun for .NET developers who need to run code in the browser. read more...

add a comment |category: |Views: 70

tags: another

Using GIT on top of TFS(dotnetsurfers.com)

submitted by latishlatish(470) 1 year, 1 month ago

How to use the git-tfs bridge to work with GIT on top of TFS. read more...

add a comment |category: |Views: 58

tags: another

Common Table Expressions (CTE) – Underappreciated Features of Microsof(beyondrelational.com)

submitted by jacobsebastianjacobsebastian(3639) 1 year, 1 month ago

This is part of the series of posts that I am running under the title " Under Appreciated Features of SQL Server ". The series has been inspired by Andy Warren's editorial on SQLServerCentral.com. Did you ever wonder if you could create a temporary result set and use that within a single... read more...

add a comment |category: |Views: 40

tags: another

Displaying JSON in your Browser(www.west-wind.com)

submitted by jch0001jch0001(145) 1 year, 1 month ago

Javascript, JSON read more...

add a comment |category: |Views: 37

tags: another