Search   Articles   Dev Forums   Personalize   Favorites   Member Login   ASP.Net Hosting
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Sunday, November 23, 2008

Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 
FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > Visual Studio.Net
Search:
What's New - What's Hot
Listings for .Net Remoting .Net Remoting (38)
Listings for Attributes Attributes (13)
Listings for Chat Chat (3)
Listings for COM Interoperability COM Interoperability (126)
Listings for Data Form Wizard Data Form Wizard (23)
Listings for Data Management Data Management (45)
Listings for Debugging Debugging (76)
Listings for Deployment Deployment (28)
Listings for Email Email (7)
Listings for File Management File Management (18)
Listings for Generates code Generates code (11)
Listings for Installation Installation (36)
Listings for Monitoring Tools Monitoring Tools (68)
Listings for Oracle and .Net Oracle and .Net (16)
Listings for Plugins Plugins (22)
Listings for Reports Reports (29)
Listings for Scalability Scalability (4)
Listings for Security Security (11)
Listings for Threading Threading (18)
Listings for Tips & Tricks Tips & Tricks (243)
Listings for Visual Studio.Net Visual Studio.Net (89)
Listings for Web Forms Web Forms (18)
Listings for Web Services Web Services (89)
Listings for Windows Forms Windows Forms (94)
Listings for Windows Installer Windows Installer (9)
Listings for Windows Services Windows Services (68)


Resco CustomKeyboard for .NET CF        
Total Hits: 6  |  Today: 0 Author: Resco.net       Rating:  
Read Reviews | Write Review |   Your Rating: 

Resco CustomKeyboard for .NET CF is a .NET Compact Framework control which serves as a fully functional and customizable keyboard. Customization can be done using Visual Studio's designer. The most important and absolutely unique feature of CustomKeyboard is that developer can design as many keyboard layouts as he needs and then switch among them during run-time. It is also possible to save the created layouts into an XML file and then load the layouts anytime into it during run-time. The develo...

What Is Extreme Programming?        
Total Hits: 8  |  Today: 0 Author: Marc Clifton, J. Dunlap       Rating:  
Read Reviews | Write Review |   Your Rating: 

Extreme Programming is a combination of simple, common-sense practices stressing communication, teamwork, requirements, and customer satisfaction. It is based on these values:
* Communication - in order to successfully create and deliver a software product on time, there must be constant and thorough communication between members of the development team.
* Feedback - Customer involvement and feedback are essential for customer satisfaction.
* Simplicity - XP stresses the nee...

A summary of OO Priciples        
Total Hits: 7  |  Today: 1 Author: Nigel-Findlater       Rating:  
Read Reviews | Write Review |   Your Rating: 

OO Design is more than just using an OO language. Over the years many bright programmers have built up a collection of rules that help to build well designed maintainable code. This article lists the main rules of OO programming. The intention is to inspire the reader to think about these rules and make further reading. There is a lot of material on the web that drills down into more details with plenty of examples....

Creating Web Server Control Templates Programmatically        
Total Hits: 8  |  Today: 0 Author: Mike Pope, Nikhil Kothari       Rating:  
Read Reviews | Write Review |   Your Rating: 

This paper is divided into the sections that illustrate increasingly sophisticated ways to create templates. In the initial section, for example, you will learn how to create the simplest possible template in code. Subsequent sections build on this simple template to add functionality to it. By the end of the paper, you will have learned how to create a fully functional template that includes data binding....

Redirecting an Application to Target a Different XML Web Service During Installation        
Total Hits: 9  |  Today: 0 Author: Steve Hoag       Rating:  
Read Reviews | Write Review |   Your Rating: 

When developing applications that target XML Web services, you will most often target XML Web services that are already installed on a Web server. Although this is the norm, there will also be cases where you want to target a different XML Web service when the production version of your application is deployed. For example, you may have targeted a test version of an XML Web service on your development server, but the finished application needs to target an installed version of the XML Web servic...

Web Projects and Source Control Integration in Visual Studio .NET        
Total Hits: 8  |  Today: 0 Author: Korby Parnell and Martyn Lovell       Rating:  
Read Reviews | Write Review |   Your Rating: 

No one person can master all the languages, techniques, tools, and processes required to create world-class software applications rapidly and consistently. That's why most professional developers work in teams. Efficiency and economy demand it. In the same way, most software development teams adopt a parallel development methodology that liberates individuals from the constraints of serial development, where one developer completes one task before the next can begin another. Parallel development...

Working with Single-File Web Forms Pages in Visual Studio .NET        
Total Hits: 7  |  Today: 0 Author: Harry Miller       Rating:  
Read Reviews | Write Review |   Your Rating: 

Although Microsoft Visual Studio® .NET makes it easy to create and work with Web Forms pages using the ASP.NET code-behind model, you might find yourself working with single-file Web Forms pages by circumstance or by preference. This article gives an overview of the differences between the two models, describes how to work with single-file Web Forms pages in Visual Studio, and shows you how to convert single-file .aspx pages to code-behind Web Forms pages....

A Programmer's Introduction to Visual Studio .NET "Whidbey"        
Total Hits: 8  |  Today: 1 Author: Sean "Early" Campbell       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article, you'll learn about the new features of Visual Studio® .NET "Whidbey" and how they can make you more productivity when writing code. Considering the astounding number of new features in the Whidbey release of Visual Studio .NET IDE, we are going to spend our time going through a Top 10, followed by a glance at other features we found exciting....

Rapid Evaluation Methods for Visual Studio .NET        
Total Hits: 8  |  Today: 0 Author: Walter Dominguez       Rating:  
Read Reviews | Write Review |   Your Rating: 

Terminal Services and disk imaging offer developers two alternatives for the rapid evaluation of Visual Studio .NET, while ensuring the integrity of their production-development environment. Terminal Services — a component of Windows® 2000 Server, Windows® Advanced Server, and Windows® Datacenter Server — is a technology that allows users to remotely execute applications on a Windows 2000-based server over virtually any type of network connection. By means of Terminal Services, developers can us...

Troubleshooting .NET Interoperability        
Total Hits: 6  |  Today: 0 Author: Bob Burns       Rating:  
Read Reviews | Write Review |   Your Rating: 

Visual Studio® .NET represents a major change in the way that developers create and run applications by introducing the idea of managed code that targets the common language runtime. Managed code provides many advantages including automatic memory management, attributed programming, and a common type system. Unfortunately, the very features that make managed code so powerful also make it fundamentally different from unmanaged code such as Windows APIs and COM objects. Although Visual Studio .NET...

How Visual Studio .NET Generates SQL Statements for Concurrency Control        
Total Hits: 6  |  Today: 0 Author: Steve Stein       Rating:  
Read Reviews | Write Review |   Your Rating: 

Any application that might have multiple users simultaneously attempting to access and modify data needs some form of concurrency control. Otherwise, one user's changes could inadvertently overwrite modifications from other users. The design tools in Visual Studio .NET can create SQL statements that use the "check all values" approach to optimistic concurrency or the "last-in wins" approach to updating data. This paper will explain:
* How each of these statement types are generated.
...

Design-Time Data Tools in Visual Studio .NET        
Total Hits: 8  |  Today: 0 Author: Steve Stein       Rating:  
Read Reviews | Write Review |   Your Rating: 

Visual Studio® .NET provides many tools for working with data. Some tools are available for working directly with data at its source, whereas other tools are for working with data that is integrated into your Visual Basic® or Visual C#™ application. This paper will assist you in discovering what tools are available, as well as where to find specific information about these tools in the Visual Studio documentation....



DevASP.Net - Disclaimer - Privacy
Copyright © 2008 DevASP.net