|
|
|
|
|
| | Total Hits: 8 | Today: 0 | Author: John Papa | Rating:  |
| |  ADO.NET in the next release of Visual Studio® code-named "Orcas" features the new Entity Framework. It allows developers to focus on data through an object model instead of through a logical/relational data model. The Entity Framework helps abstract the logical data schema into a conceptual model and allows for multiple ways to interact with the conceptual model through Object Services and a new data provider called EntityClient. This month’s column discusses what the Entity Framework is, how i... |
| | Total Hits: 6 | Today: 0 | Author: Qwertie | Rating:  |
| |  In the Go programming language, you do not say explicitly that your type implements a given interface. Instead, a type is convertible to any interface, just so long as it implements all the methods in the interface. This often reminds people of "duck typing" in dynamic languages such as Python or Ruby, but it is faster; in fact, Go interface calls are the same speed as virtual method calls in C++ and C#!... |
| | Total Hits: 112 | Today: 0 | Author: M Usman | Rating:  |
| |  I was working on a database oriented application and came to know that i need a code snippet that can search in an arraylist. Obviously, If you have stored defined datatypes directly, it is very easy to search the arraylist. That is by using the ArrayList.Contains Methods. In my case, I had an Array List that contained objects of one of my own classes. .Net Framework doesnt provide such a method to search within the custom objects of particular classes. So I worked out for a search method that c... |
| | Total Hits: 5 | Today: 0 | Author: Peter Vegter | Rating:  |
| |  This is an MCI Wrapper Class Library for .NET developers for easy but powerful playback of movies and/or music from within your application using Microsoft Windows built-in Media Control Interface (MCI), adding:
* display formatting * multiple fullscreen modes * display overlays * true repeat * and more
All code examples in this textfile are copied from a working application.... |
| | Total Hits: 4 | Today: 0 | Author: Olivier Gaudefroy | Rating:  |
| |  Application internationalization mostly uses resx file to store the various strings that needs to be translated. This tool helps you to ensure that your resx file within a Visual studio project are correctly filled with a comment value for each entry.... |
| | Total Hits: 15 | Today: 0 | Author: Izzet Kerem Kusmezer | Rating:  |
| |  I have release a new version 1.6.0.0 which has the following features
* General Support For Extraction Of .Net 4.0 And VS2010 Support Added. * The sourcefile targets are now extracted from srvsrc files and no longer hardcoded. * The supported VS Versions are added to the config file and can be extended without changing the sourcecode. * General Code Cleanup Applied.... |
| | Total Hits: 45 | Today: 0 | Author: Jahmani | Rating:  |
| |  Correct and comprehensive validation of the state of business objects is a critical requirement in the development of every data driven application. This article will demonstrate how to instrument POCOs (plain old C# objects) with support for validation rules using dependency injection at runtime.... |
| | Total Hits: 68 | Today: 0 | Author: fodonnel | Rating:  |
| |  In developing ConfigManager.Net, I set out to address the following problems: * While many of the items in the app.config\web.config file are generic to all team members, some settings, especially in the appSettings and connectionStrings sections, may need to be different. * The configuration sections of referenced assemblies is not automatically merged into the configuration file of the main application. * Although it is possible to store the appSettings and connectionStrin... |
| | Total Hits: 34 | Today: 0 | Author: maharishi_b | Rating:  |
| |  I have been using .dan.g.'s ToDoList for a very long time now. It's very easy for me to track things that I have to do and also track the projects on which I am working. But there was always a problem related to the creation of task list. My organization uses Microsoft Project (like many other companies) for tracking projects and the cost of development related to these projects. So, I had to make two tasklists, one for the company and the other for myself. ToDoList is much more simpler when com... |
| | Total Hits: 69 | Today: 0 | Author: kevin delafield | Rating:  |
| |  When I first started using Visual Studio, I was disappointed that Trace output goes into a standard text window within the IDE. What I needed was a record oriented logging system with output to a graphical console. My solution was a fairly simple solution based on .NET remoting and Windows .NET Forms.... |
| | Total Hits: 211 | Today: 0 | Author: peterchen. | Rating:  |
| |  With AddIn Manager you can enable/disable addins, set load options, and do the dreaded ResetAddin that sometimes just is necessary. Additionally, explore all the locations where Visual Studio searches for addins. For me, the AddIn Management in Visual Studio 2005 is broken: Search and Load mechanism is more complex and less transparent than ever, and the advertised functionality like enabling addins, and controling their load time often doesn't work. As SP1 doesn't seem to change that, I decided... |
| | Total Hits: 4 | Today: 0 | Author: tr0217 | Rating:  |
| |  Sometimes we encounter one of the following situations:
1. A set of options have little importance to the degree that users can accept their default value under most situations. Ideally these unimportant options can be collapsed (just as the Find and Replace Form of Visual Studio 2010) so as to not disturb the users. For this, Collapsible GroupBox is a good choice.... |
| | Total Hits: 4 | Today: 0 | Author: gordon_matt | Rating:  |
| |  This article will demonstrate how to create a basic plug-in application for WinForms using the PluginFramework. This is not intended to be a perfect solution, but it is a mighty good start in that direction if I must say so myself! It should help you get started on the right track. I have been meaning to write this for quite some time, but never had the time; in fact, I still don't have much time, so you'll have to forgive me if the article is somewhat lacking in elaboration!... |
| | Total Hits: 8 | Today: 0 | Author: SteveLi-Cellbi | Rating:  |
| |  Applications built for .NET tend to be composed of a large number of assemblies and it's not a secret that .NET code can be easily decompiled using dissasemblers. It might be useful to pack all application assemblies into a single native executable, thus reducing application size and providing some degree of code protection. In this article, we'll look into a simple way of creating a .NET application packer tool. The complete source code and documentation of the tool is free to download at the C... |
OSIcon  | Version: 0.00 | Price: $0.00 |
| | Total Hits: 13 | Today: 0 | Author: knive1 | Rating:  |
| |  This library can retrieve icons from extensions and files, with additional information like file type (Hard Drive, Folder, PHP Script File, ...). Also provide a class for CACHE icons and create a ImageList with added icons... |
| | Total Hits: 38 | Today: 0 | Author: Ralph Willgoss | Rating:  |
| |  The aim of this article is to show how you can install, configure, and have CruiseControl.NET perform continuous monitoring by running a scheduled task.
Once you've seen the idea behind how to set everything up, it's quite easy to extend this concept to perform continuous monitoring on things such as:
* Health monitoring for key systems (databases, Web services, etc.) * Report generation * Batch jobs * Content that is produced to be consumed via RSS or expo... |
| | Total Hits: 46 | Today: 0 | Author: Goldytech | Rating:  |
| |  I got a overwhelming response for my post , CRUD Operations using Ado.net Entity Framework. Continuing further on this I wanted to show some advanced features of ado. net entity framework. In this post I discuss about how you can do CRUD Operations on master details tables. Perform some business validation rules using Entity Framework partial classes both at the field level as well as on the record level. Sounds interesting then continue read on. This post is the Part two of Entity Framework. I ... |
| | Total Hits: 73 | Today: 0 | Author: John Grove | Rating:  |
| |  This small application allows the user to select an EXE from a dialog by which it will use the Native Image Generator (Ngen.exe). As most who use Ngen know, it is a command line tool which is not very intuitive. I got tired of typing the commands in, and created this app to simply select the EXE.... |
| | Total Hits: 47 | Today: 0 | Author: thund3rstruck | Rating:  |
| |  CD-Beaver is a simple program for cataloging optical media such as Compact Discs (CD) and Digital Versatile Discs (DVD). The application uses an XML back end as it's data store and is a nice partner for disc carrying cases. The purpose of the CD Beaver is to simplify the process of storing and locating discs and the files contained on those discs. In this article I will demonstrate the various uses of CD Beaver and how it could make archiving your media easier and less stressful.... |
| | Total Hits: 92 | Today: 0 | Author: msvcyc | Rating:  |
| |  Following are some of the features of this library. * Allows logging messages by severity levels. Library currently supports 3 severity levels like Error, Warning and Information. * Provides wrap around feature to wrap log files when maximum configured size is reached. * Library provides feature to recover from exceptions. It basically attempts once to close the current log file and re-open a new one. * Library is thread safe.... |
|
|
|
|
|
|
|
|
|
|
|
|
|