.NET news » Search results

Search results for query "extend" (20):

Extend Your Skills: Code for Mobile Using Your Current .NET Know-How

You'd be surprised how much you already know about mobile app development. If you use Visual Studio 2005 to code Windows desktop or Web apps, then you have everything you need to get started in this fast-growing market. Find out just what you already know and how to bridge the gap between desktop and mobile. Also learn some tips for coding both mobile client and mobile Web apps.
2007-03-28 22:12:21   Source: Extend Your Skills: Code for Mobile...   Tags: Mobile

Enhance Microsoft Dynamics CRM 4.0 Reporting with Silverlight

Reporting in Microsoft Dynamics CRM 4.0 has been significantly enhanced. Find out how to extend the built-in reporting features and create customized visually-enhanced reports using ASP.NET and Silverlight.
2009-04-23 20:38:27   Source: Enhance Microsoft Dynamics CRM 4.0 Reporting with...   Tags: Silverlight

Creating Visual Studio Add-Ins

Visual Studio provides one of the most powerful IDE's on the market. One under-exploited aspect of this IDE is the extensibility model. Programming IDE's are not static development tools. Development techniques, tools, and concepts change. Extensibility has been built into Visual Studio from its early inceptions. The great thing about Microsoft's foresight is that you can augment functionality of Visual Studio yourself. This article will demonstrate how to extend the Visual Studio IDE using Visual Studio, the .NET Framework, and the Visual Studio Add-In and automation models..
2007-09-26 04:00:00   Source: Creating Visual Studio Add-Ins   Tags: Addins Visual Studio

Extending Asp.Net role based Security with Custom Security Module (Permission Based, Page Level Authorization)

This project intends to extend the default Asp.Net role based Security to include Permission Based / Page Level Authorization Layer. Works with both ASP.Net and Asp.Net MVC. Permission rules to Allow/Deny access to website resources (like "Folder/File.aspx" or "Controller/Action" ) are stored in DB
2011-11-12 04:28:00   Source: Extending Asp.Net role based...   Tags: Internet

Using OleDb to import text files (tab, csv, custom)

I have been browsing the Web for a good and simple class to handle delimited file imports. My current assignment has an import option that needs to deal with that. However, the current implementation (using StreamReader) is not good enough. It doesn't handle all the exceptions you encounter with delimited files. I found a number of examples on the Internet, but none of them really suited my needs. What I really missed was a simple example that I could extend so that it would suit my needs. So, being the developer that I am, I created my own class to import delimited files. After this was completed, I though I'd share it with others as an example.
2008-07-15 07:01:00   Source: Using OleDb to import text files (tab, csv, custom)   Tags: Database Examples

NHunspellTextBoxExtender - A Spellchecking IExtenderProvider for TextBoxes using Hunspell for .NET

With many applications, spell checking can be a vital aspect to include. Most people are accustomed to the spell checking capabilities of products like Microsoft Word or OpenOffice. There are products available for purchase that can add spell checking capability, such as SharpSpell that can cost hundreds of dollars. Unfortunately, there is a lack of Open Source, freely available tools that can provide the functionality of Microsoft Word. That is why I began to work on a spell checking IExtenderProvider that could extend any control that inherits TextBoxBase (both TextBox and RichTextBox inherit TextBoxBase).
2010-05-07 15:43:00   Source: NHunspellTextBoxExtender - A...   Tags: Examples GUI

Windows Mobile Network Analyzer Power Toy

Network Analyzer for Windows Mobile runs network utilities, for example ping and ipconfig, on a Windows Mobile powered device. Network Analyzer for Windows Mobile facilitates the troubleshooting of network connectivity issues. You can extend the harness. You can add user-defined tests (DLLs) to the list of tests to be executed. An xml input file defines the list of tests to execute. You can use Network Analyzer to send information about network traffic to a .cap file. You can then view the .cap file with the Network Monitor tool or the Ethereal tool.
2006-09-08 07:20:00   Source: Windows Mobile Network Analyzer Power Toy   Tags: Mobile Software

Dissecting and Putting the Visual Studio 2005 Generated Data Access Layer Into Perspective

Do more with less code is the slogan of Visual Studio 2005.When it comes to reducing the amount of written code, wizards are definitely a viable option. Visual Studio 2005 has a lot of wizardry in it, especially to generate data access code. Any code that gets silently injected in your project follows a strict logic and a well-known design pattern. A full understanding how Visual Studio 2005 does it puts you on the right track to modify and extend the code to build your made-to-measure data access layer. This article dissects the code behind table adapters and binding source components to unveil patterns and best practices.

2006-06-15 19:00:00   Source: Dissecting and Putting the Visual Studio 2005 Generated...   Tags: Database

Programming Microsoft Agent in Windows Forms

Microsoft Agent is an unprecedented technology to create innovative, new conversational interfaces for applications and Web pages. It provides powerful animation capability, interactivity, and versatility, with incredible ease of development. Microsoft Agent is a technology that provides a foundation for more natural ways for people to communicate with their computers. It is a set of software services that enable developers to incorporate interactive animated characters into their applications and Web pages. These characters can speak, via a Text-to-Speech (TTS) engine or recorded audio, and even accept spoken voice commands. Microsoft Agent empowers developers to extend the user interface beyond the conventional mouse and keyboard interactions prevalent today. Enhancing applications and Web pages with a visible interactive personality will both broaden and humanize the interaction between users and their computers. There are a limitless number of roles and functions that developers can create for these personalities to perform…
2010-05-06 08:48:00   Source: Programming Microsoft Agent in Windows Forms   Tags: Examples Multimedia

An Overview of Partial Classes and Partial Methods

Partial classes and partial methods are two programming language features of .NET programming languages that make it possible for developers to extend and enhance auto-generated code. In a nutshell, a partial classes allow for a single classs members to be divided among multiple source code files.

At compile-time these multiple files get combined into a single class as if the classs members had all been specified in a single file. Partial methods are methods defined in a partial class that are (optionally) divided across two files. With partial methods one file contains the method signature - the method name, its return type, and its input parameters - while the body is (optionally) defined in a separate file. If the partial methods body is not defined then the compiler automatically removes the partial method signature and all calls to the method at compile-time…

2009-07-14 19:00:00   Source: An Overview of Partial Classes and Partial Methods   Tags: C# ASP.NET