Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Saturday, July 04, 2009

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 > .NET Framework
Search:
What's New - What's Hot
Listings for .Net FAQ .Net FAQ (66)
More Categories for .NET General .NET General (12)
Listings for Add-Ons Add-Ons (120)
Listings for Assembly Assembly (73)
Listings for Class Libraries Class Libraries (179)
Listings for Code Generation Code Generation (65)
Listings for Data Binding Data Binding (22)
Listings for Deployment Deployment (27)
Listings for Design and Strategy Design and Strategy (201)
Listings for FAQ FAQ (11)
Listings for Garbage Collection Garbage Collection (32)
Listings for Globalization Globalization (21)
Listings for Interoperability Interoperability (22)
Listings for Memory Management Memory Management (40)
Listings for Messaging Messaging (11)
Listings for Migration to .Net Migration to .Net (51)
Listings for N-Tier N-Tier (24)
Listings for Object Oriented Programming Object Oriented Programming (316)
Listings for Passport Passport (0)
Listings for Performance Monitoring Performance Monitoring (62)
Listings for Persistent Objects Persistent Objects (5)
Listings for post-relational database post-relational database (10)
Listings for Security Security (122)
Listings for Serialization Serialization (60)
Listings for Threading Threading (50)
Listings for vs.NET vs.NET (5)
Listings for XML and .NET XML and .NET (80)
 


NATO Phonetics        
Total Hits: 1  |  Today: 1 Author: Tomas Brennan       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article is about compensating for verbal communication misunderstandings, sounds deceptive but simple and easy. To give an example, suppose you are administering a system remotely, you need to check a command by talking to a technician on the other end of the telephone and unsure if you got the spelling right maybe due to cultural aspect or an illness affliction (think - head cold which can dramatically alter your speech/accent/pronounciation), you could end up with making a mistake and pos...

LINQ : 2 nice things I just found        
Total Hits: 2  |  Today: 0 Author: Sacha Barber       Rating:  
Read Reviews | Write Review |   Your Rating: 

I was at work today and had to deal with obtaining the values from some anonomous types that I was using in some WPF databinding, and although I knew I could do it with reflection, I thought someone else may have already done something, and low and behold I found something pretty cool. I found this chap that wrote a nice wrapper around an anonomous type that lets you access the property values using generics for the type of the property and strings for the key of the property. He also allows you...

Extending Control: Lock and Unlock        
Total Hits: 2  |  Today: 0 Author: TechBearSeattle       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article extends System.Windows.Forms.Control to implement a consistent way of allowing and disallowing users to edit the contents of the control. Concepts include:
* Extending a base class to extend all derived classes.
* Using extensions to implement standardized behavior.
* Using extensions to simplify reflection.
* An example of when not to use extensions....

Interview with Matt Pietrek        
Total Hits: 3  |  Today: 0 Author: Chris Maunder       Rating:  
Read Reviews | Write Review |   Your Rating: 

We've heard Jeff Prosise from Wintellect and Lon Fisher from Microsoft give us their explanations on what .NET means for us. Now Matt Pietrek - the Win32 guy - gives us his thoughts on .NET, working at NuMega, and the future of software development in general. Matt has been writing the 'Under the Hood' column for MSJ and MSDN for years. He is the author of many great programming books, and is currently doing advanced research at the NuMega Lab of Compuware Corp. Check out his homepage for everyt...

Joshua Trupin of MSDN: What .NET means to developers        
Total Hits: 2  |  Today: 0 Author: Chris Maunder       Rating:  
Read Reviews | Write Review |   Your Rating: 

The way I see it, the naming scheme itself is what�s created some confusion. Microsoft announced .NET, and they announced the .NET Framework, and they�re not identical terms. The part that we�re concerned with, the framework, is a set of concrete technical specifications � the CLR, the Framework Class Libraries, MSIL, and so on. �.NET� is also used as a marketing term for a group of products that use XML Web Services for interoperability....

Jeff Prosise on .NET        
Total Hits: 2  |  Today: 0 Author: Chris Maunder       Rating:  
Read Reviews | Write Review |   Your Rating: 

What will be the role of ATL and COM in the new .NET technologies? What about emerging technologies such as WTL? ATL will have no role whatsoever in writing Microsoft .NET applications. COM won’t be a player there either, although it’s interesting to note that .NET began its life as COM+ 2.0. Microsoft .NET is a logical evolution of COM, but to describe it that way hardly does it justice. .NET is much broader in scope than COM ever was....

Writing the read only application-scoped settings        
Total Hits: 3  |  Today: 0 Author: freedeveloper       Rating:  
Read Reviews | Write Review |   Your Rating: 

The application-scoped settings are one of the problem that the NET programmer has when hi/she need to decide where put those global settings that need to use all users in the application, but also need to change programmatically by determinate user. Different solutions has been proposed to resolve this issue, one is to create a independent read and write methods capable to modify the configuration xml file programmatically (Levan Midodashvili ). The problem with the solutions that writing in th...

Detection of Half-Open (Dropped) TCP/IP Socket Connections        
Total Hits: 4  |  Today: 0 Author: Stephen Cleary       Rating:  
Read Reviews | Write Review |   Your Rating: 

There is a three-way handshake to open a TCP/IP connection, and a four-way handshake to close it. However, once the connection has been established, if neither side sends any data, then no packets are sent over the connection. TCP is an "idle" protocol, happy to assume that the connection is active until proven otherwise. TCP was designed this way for resiliency and efficiency. This design enables a graceful recovery from unplugged network cables and router crashes. e.g., a client may connect to...

Auto Release Pool in Pure C Language        
Total Hits: 4  |  Today: 0 Author: Chilap       Rating:  
Read Reviews | Write Review |   Your Rating: 

Recently, I have been learning how to write programs using Objective-C on Mac OS X. Objective-C 2.0 starts to offer garbage collection, but prior to that, memory management is performed explicitly by programmers using the so-called "auto release pools". While studying, I thought this kind of pool could also be applied in C programs, thus I would like to write one myself in C. Although I know there must be lots of such libraries around, I still would like to reinvent the wheel in pure C language....

Introduction to Software Translation for MFC        
Total Hits: 4  |  Today: 0 Author: Robert Pittenger       Rating:  
Read Reviews | Write Review |   Your Rating: 

Recently, I have been involved in localization of software applications for global markets. Although software localization and translation is usually (and hopefully) less complex and less expensive than the original development of the application, it is still a complex issue, and it can be difficult knowing how to get started. In this article, I am summarizing some of the information I would have liked to have immediately available when I first considered localizing applications. This article is...

Display Progress and Overlay Icons for multiple views from .NET in Windows 7 taskbar        
Total Hits: 8  |  Today: 0 Author: George Mamaladze       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article describes how to use Windows 7 new taskbar features, progress indication and overlay icon, from unmanaged .NET code. The second part shows you how to manage progress indication and overlay icons in case of multiple views (windows) and provides appropriate missing classes for Windows API Code Pack....

Clearing the Console Screen using API        
Total Hits: 6  |  Today: 0 Author: Mohammad Elsheimy       Rating:  
Read Reviews | Write Review |   Your Rating: 

In addition to clearing the console screen, this lesson teaches you some about PInvoking, marshaling, and memory management. Also you will learn additional techniques like clearing a specific portion of the screen, and changing the cursor position. Moreover, you will dig into IL and see how System.Console.Clear() method do it. More than that you will learn how to reverse-engineer a .NET assembly and discover the code inside. In addition, the sample application shows how to perform I/O operations...


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