Stories recently tagged with 'CodeProject'

ASP.NET MVC Dynamic Themes(codeproject.com)

submitted by sharplifesharplife(4560) 3 years ago

In this article you will learn how to dynamically change themes in ASP.NET MVC. read more...

add a comment |category: |Views: 249

tags: another

Advanced Unit Test, Part V - Unit Test Patterns(codeproject.com)

submitted by powerrushpowerrush(3873) 3 years, 11 months ago

Patterns for test method-stub generation to improve unit test effectiveness... ...one of the goals is a tool suite that can be used to automatically generate unit tests, both as a reverse and forward engineering process. With the latter, it should be possible to generate the method stubs for the code under test. read more...

add a comment |category: |Views: 24

tags: another

Legion: Build your own virtual super computer with Silverlight(codeproject.com)

submitted by TramShilverTramShilver(100) 4 years, 1 month ago

Legion is a grid computing platform that uses the Silverlight CLR to execute user definable tasks. It provides grid-wide thread-safe operations for web clients. Client performance metrics, such as bandwidth and processor speed, may be used to tailor jobs. Also includes a WPF Manager application. read more...

add a comment |category: |Views: 15

tags: another

The Code Project Browser Add-in for VS 2005(codeproject.com)

submitted by mrlinxmrlinx(580) 4 years, 5 months ago

The people from SlickEdit have created a great add-in to let you integrate the very very large collection of projects directly from Code Project just inside your VS IDE. read more...

add a comment |category: |Views: 1

tags: another

It takes a community of programmers…(blog.slickedit.com)

submitted by jasonjason(175) 4 years, 5 months ago

I’m the type of developer who learns best by example. Show me a working piece of code that solves a problem I’m having, then let me take it and reshape it to my needs. For me, this is an extremely powerful way of learning and achieving code reuse. read more...

1 comment |category: |Views: 0

tags: another

CodeProject.com: "Meet Microsoft Popfly: Part I - Mashup App Crea(cjcraft.com)

submitted by CJCraftCJCraft(495) 4 years, 8 months ago

I've post an article about Microsoft Popfly on CodeProject.com. Microsoft Popfly is a website that allows users to create web pages, program snippets, and mashups using Microsoft Silverlight and the set of online tools provided. Popfly supports both Mozilla Firefox 2.0, and Internet Explorer 6.0 or higher. read more...

add a comment |category: |Views: 3

tags: another

Silverlight articles out on codeproject(codeproject.com)

submitted by bacalaobacalao(320) 4 years, 8 months ago

Recently added a getting started article read more...

add a comment |category: |Views: 7

tags: another

Codeproject to offer Silverlight articles(codeproject.com)

submitted by bacalaobacalao(320) 4 years, 9 months ago

No articles yet, though... read more...

add a comment |category: |Views: 59

tags: another

100% Reflective Class Diagram Creation Tool(codeproject.com)

submitted by jiltedcitizenjiltedcitizen(563) 4 years, 9 months ago

This article is about using reflection. For those of you that don't know what reflection is, it is the ability to obtain information about a Type of object without really knowing anything about the object type that is being dealt with. For example one could simply ask the current Type of object if it supports a certain method name, if it does, the method can be called. This may sound strange but it is a very powerful technique. Lets suppose that I simply want to look at what methods a class supports, well that is also easily achieved using reflection. .NET allows developers to leverage reflection in many ways. read more...

add a comment |category: |Views: 30

tags: another

Applying a Color Wash to Images(codeproject.com)

submitted by gavinharrissgavinharriss(55) 4 years, 10 months ago

Ever had a web site that needs branding for individual customers but found the presence of image elements complicates the process as you can't adjust their color from a simple style sheet? Wouldn't it be nice to use a base set of grayscale images and automatically apply a color wash to bring them in line with the customer's color scheme without fiddling with a graphics package? read more...

add a comment |category: |Views: 21

tags: another

Nullable Data Readers(codeproject.com)

submitted by brianjlowrybrianjlowry(640) 4 years, 10 months ago

FTA: .NET 2.0 introduced nullable types into the CLR which, for the first time, provided the ability for value types to be assigned a null value. However, ADO.NET 2.0 did not introduce any new features specifically for dealing with nullable types. Therefore, one of the primary goals for the classes presented in this article is to provide a simple API for working with nullable types within the persistence layer. read more...

1 comment |category: |Views: 17

tags: another

A csharp image enhancement filters library(codeproject.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 2 months ago

This project started from a need. A need to have a simple image/photo .Net filters functionality to style and enhance pictures to be displayed on the web (or any other place for that matter). True, there are some filter libraries scattered around the web for doing stuff like a WaterMark or a GrayScale or even a collection of those (ImageMagick) , in most of the times they are very basic or unhelpful for styling images. Furthermore the .NET System.Drawing.* namespace doesn't provide any basic or sophisticated capabilities, for example there isn't a proper rotate or resize functionality .So the goal was to collect all of the nice .NET filters that are out there into a single package and to extend it by providing more useful and styled filters. read more...

add a comment |category: |Views: 175

tags: another

EmuEngine(codeproject.com)

submitted by gavinjoycegavinjoyce(25.7k) 5 years, 2 months ago

With the EmuEngine, you can create simple 2D games in .NET, it’s a small library with the following classes: * DrawingArea: This is the “main” class. It handles Picture objects, PictureWall objects, and PixelWall objects. It also includes a Collision function. Nothing more, but it’s enough for a simple 2D game like the test game in the sample project. * Picture: It represents a picture. The DrawingArea class has a function called AddPicture. With that function, you can add a picture into your game. * PictureWall: nearly the same as the Picture class. You can add a PictureWall object with the AddPictureWall function of the DrawingArea class into your game. * PixelWall: The constructor eats a Color, it’s a nice way to add a colored wall into your game. read more...

add a comment |category: |Views: 2

tags: another

Neural Networks on C#(codeproject.com)

submitted by RobChappelRobChappel(2720) 5 years, 2 months ago

The articles describes a C# library for neural networks computations and their application for several problems solving. read more...

add a comment |category: |Views: 25

tags: another