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 > C-Sharp > Miscellaneous
Search:
What's New - What's Hot


Sliding Scale Gauge        
Total Hits: 14  |  Today: 0 Author: Tefik Becirovic       Rating:  
Read Reviews | Write Review |   Your Rating: 

The sliding scale is a very simple, but fast, performing, and powerful .NET user control, figured as a graphical scale gauge with a linear representation of data. The instrument consists of a static pointer (needle) and a movable linear scale. The static needle refers to the current position of the moving scale, and shows the input values through a graphical position along the scale. The sliding scale is endless, and can represent an unlimited value (type double) at a certain moment....

Working With Microsoft.mshtml.dll and SHDocVw.dll        
Total Hits: 37  |  Today: 1 Author: Emersion       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article contains discussion on Microsoft.mshtml.dll and SHDocVw.dll.I was working On BHO for IE in C#. Initially I was not knowing any thing about BHO and IE extentions. I read articles and Architecture and related information from MSDN. Also I read Architecture of IE on MSDN. But I got the best understanding of BHO onCode Project By Pavel Zolnikov. I have listed some problem that i had faced and Solution of those problem....

Sorting Generic Lists and IEnumerables by Object Property Name        
Total Hits: 30  |  Today: 1 Author: Phil Hustead       Rating:  
Read Reviews | Write Review |   Your Rating: 

Here are a couple of really cool methods that makes it very easy to sort generic List s and IEnumerable collections by the collection item object property name. I was working on a project and needed to bind a generic list to a GridView control. I was dynamically binding the list, and I needed an easy way to change the list sort using only a property name. I came up with a couple of methods that makes this really easy. The first method allows you to directly sort a generic List<> object using Ref...

Simple Pop-up Control        
Total Hits: 28  |  Today: 0 Author: Lukasz Swiatkowski       Rating:  
Read Reviews | Write Review |   Your Rating: 

Pop-up windows are everywhere. Each tooltip is a pop-up window; each combobox has its pop-up list; many advertisements are also shown in pop-up windows. At first, we might choose the Form class as a base class for our pop-up control. Unfortunately, it's a bad choice because when we show our pop-up form, the parent form loses its focus. A pop-up window shouldn't cause that. Luckily, there is a class that does not cause loss of focus. We can use it as a base class for our pop-up control. It's the ...

Simplified APM with C#        
Total Hits: 14  |  Today: 0 Author: Jeffrey Richter       Rating:  
Read Reviews | Write Review |   Your Rating: 

Ihave long extolled the virtues of the asynchronous programming model (APM), emphasizing that performing I/O-bound operations asynchronously is the key to producing scalable and responsive applications and components. Achieving these goals is possible because the APM allows you to use a very small number of threads to execute a large amount of work without blocking any of the threads. Unfortunately, using the APM to build a typical application or component is difficult, so many programmers just ...

Authorization Manager AzMan        
Total Hits: 38  |  Today: 1 Author: bnturbanator       Rating:  
Read Reviews | Write Review |   Your Rating: 

This is a working example of implemenation of Authorization Manager AzMAn.....

StreamMuxer        
Total Hits: 15  |  Today: 0 Author: Jason.Thomas       Rating:  
Read Reviews | Write Review |   Your Rating: 

Have you ever opened a file stream with FileShare.None so that external programs could not alter its contents, only to be frustrated when other parts of your same program needed to open the file in read mode? Have you ever wanted to read data from a binary file that contains a fixed size header and treat the data section as if it were a standalone stream? Have you ever been given a COM stream and needed to use it in multiple places but couldn't? I have! In the past, I had developed a kludgy code...

CooksMate        
Total Hits: 27  |  Today: 0 Author: Andy Aspell-Clark       Rating:  
Read Reviews | Write Review |   Your Rating: 

This application was written to allow me to cook a roast dinner withut any stress and to make sure I got all the timings correct for when each different food item needed to be started....

Introduction to GWT Remote Procedure Calls (RPC) (with example application)        
Total Hits: 51  |  Today: 0 Author: Bala Arjunan       Rating:  
Read Reviews | Write Review |   Your Rating: 

Google Web Toolkit is a Web Application Framework dealing with Servers and Clients. When a Server is required to do some processing in a web-app Services must be used. A service is used to invoke server-side code from the client (and vice-versa occasionally).
In GWT the Client side code pages run more like an application within the Client (Browser), so requesting the HTML pages from the Server is not necessary. But in common with all Server-Client Architectures, even GWT needs to contact the ...

Abstract classes & methods        
Total Hits: 55  |  Today: 1 Author: mosessaur       Rating:  
Read Reviews | Write Review |   Your Rating: 

Abstract class is a class that has no direct instances, but whose descendants may have direct instances. There are case i which it is useful to define classes for which the programmer never intends to instantiate any objects; because such classes normally are used as bae-classes in inheritance hierarchies, we call such classes abstract classes These classes cannot be used to instantiate objects; because abstract classes are incomplete. Derived classes called concrete classesmust define the missi...

Nested Classes        
Total Hits: 67  |  Today: 0 Author: thamir       Rating:  
Read Reviews | Write Review |   Your Rating: 

At times you need to define a class only to serve other class and there are no other reasons to make it visible. The best way to implement this is through nested classes. A nested class is a class defined within the scope of another class....

Creating your own custom Wireshark Dissector        
Total Hits: 91  |  Today: 1 Author: KenThompson.       Rating:  
Read Reviews | Write Review |   Your Rating: 

Wireshark is a powerful open source tool used to dissect Ethernet packets. Have you ever wondered what it takes to implement your own custom dissector? Furthermore, have you attempted to learn Wireshark's API and found it difficult to understand? This article will attempt to demystify the development of your very own protocol dissector. This article uses Amin Gholiha's "A Simple IOCP Server/Client class," as a basis for dissection, thus producing the AMIN protocol....

PHP Obfuscator        
Total Hits: 184  |  Today: 0 Author: Craig Spitzkoff       Rating:  
Read Reviews | Write Review |   Your Rating: 

One of my recent projects at Raizlabs required the distribution of PHP software to customers as a trial demo. We wanted to allow customers to demo the software before they committed to a purchase. To limit piracy, we wanted to protect the PHP code itself.

We looked into various solutions for PHP source code protection, among them other open source encoders and obfuscators, as well as some closed source byte-code compilers. Our issue with the byte-code compilers was that in every case, the...

The Microsoft Shared Source CLI Implementation Refresh        
Total Hits: 33  |  Today: 0 Author: Stephen R. Walli       Rating:  
Read Reviews | Write Review |   Your Rating: 

The refreshed Microsoft Shared Source CLI Implementation source archive unpacks and builds on both the Microsoft Windows XP and FreeBSD operating systems and provides improvements to the Rotor experience, including better debugging, documentation and samples, build environment and tools enhancements, and bug fixes....

Living Without Biztalk        
Total Hits: 48  |  Today: 1 Author: doyleits       Rating:  
Read Reviews | Write Review |   Your Rating: 

In a world where disconnected systems are the norm, and guaranteed delivery is crucial, asynchronous processing is a godsend. Your ecommerce system can accept an order online, fire off a message, forget about it, and send the customer on his merry way. Your billing system can be notified, along with your inventory system, as well as your delivery system, all from a single message or file. Life is good. OK, so life is good if you have a way to capture that message or file and process it. I can re...

Histogram Equalization        
Total Hits: 94  |  Today: 0 Author: asif       Rating:  
Read Reviews | Write Review |   Your Rating: 

The histogram in the context of image processing is the operation by which the occurrences of each intensity value in the image is shown. Normally, the histogram is a graph showing the number of pixels in an image at each different intensity value found in that image. For an 8-bit grayscale image there are 256 different possible intensities, and so the histogram will graphically display 256 numbers showing the distribution of pixels amongst those grayscale values. More about the histogram can be...

C# Key Processing Techniques        
Total Hits: 297  |  Today: 0 Author: Budi Kurniawan       Rating:  
Read Reviews | Write Review |   Your Rating: 

Capturing and processing keyboard input from the user are important tasks in various Windows programs. Even simple interactions require prompting the user for a keystroke or two. Depending on which keys you want to process, there are several techniques for capturing and processing keyboard input. In this article, Budi Kurniawan explores these possibilities....

Programming Outlook with C#        
Total Hits: 1523  |  Today: 0 Author: Rodger Brennan       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article will take a look at different approaches to working with Outlook folders, and walk through creating items in Outlook with C#. Microsoft Office provides a powerful component model to automate from another program and using COM Interop you can automate Outlook from a .NET application....

Using Crystal Report with Oracle and parametrized Query (Passing sql query parameters to crystal reports)        
Total Hits: 39  |  Today: 0 Author: Rehan Ahmad Abbasi       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article gives an idea as how to use Crystal report in .Net Windows Application with parametrized queries and Oracle as Database using dataset.I had searched on internet for articles related to Crystal Report with parametrized query with Oracle,but I was unable to find any good article on this topic.So I am posting my article on this topic.
There are three main points in this article.
1. Crystal Report with parametrized query.
2. Using Oracle Views because here stored procedure will...

Char Ribbon        
Total Hits: 27  |  Today: 1 Author: Bubblez       Rating:  
Read Reviews | Write Review |   Your Rating: 

What the article/code snippet does, why it's useful, the problem it solves etc.

Hello! This is my first article, and I'm a medium-level begginer at C#. I has nothing to do one day so I thought it would be nice to create a basic Office 2007 Style Ribbon with all 3 styles. I hope you enjoy this. I can't seem to render some of the ribbon though, and it usually flickers when you mess with it. This contains a couple of controls, so I'll walk you through some of them....


1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  Next >> 


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