Articles   Dev Forums   Personalize   Favorites   Member Login   ASP Hosting      Active Users:  80
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Thursday, May 15, 2008
Home
Articles & Samples
ASP Hosting
Dev Search
Dev Forum
Add Your Articles
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

ESET
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

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 > Downloads
Search
DevASP

What's New
What's Hot
Listings for .Net Framework .Net Framework (0)
Listings for ASP ASP (9)
Listings for ASP.Net ASP.Net (0)
Listings for BizTalk Server BizTalk Server (0)
Listings for Database Database (0)
Listings for Internet Explorer Internet Explorer (0)
Listings for MDAC MDAC (2)
Listings for Miscellaneous Miscellaneous (0)
Listings for Personal Web Server Personal Web Server (1)
Listings for SQL Server SQL Server (8)
Listings for Visual Basic.Net Visual Basic.Net (0)
Listings for Visual SourceSafe Visual SourceSafe (1)
Listings for Visual Studio 6.0 Visual Studio 6.0 (15)
Listings for Visual Studio.Net Visual Studio.Net (0)
Listings for XML XML (16)
 


Counting Colours in an Image       
Total Hits: 400  |  Today: 0 Author: http://www.vbaccelerator.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

One basic technique for counting the colours in an image would be to create an array or collection to hold the colours and then start counting from the start of the image. However, consider what happens then if you load a 1280 x 1024 pixel image. Firstly, you have 1.3 million pixels to check, and secondly for every single one you need to check whether that colour has been counted before. With an array, that would potentially mean you could have to perform somewhere around 400 billion checks, and...

Brightness and Contrast       
Total Hits: 350  |  Today: 0 Author: http://www.vbaccelerator.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

To apply a brightness filter you simply add a fixed amount to every pixel in the image and then clamp the result to ensure it remains in the range 0 - 255. To apply a contrast filter, you determine if a pixel is lighter or darker than a threshold amount. If it's lighter, you scale the pixel's intensity up otherwise you scale it down. In code this is done by subtracting the threshold from a pixel, multiplying by the contrast factor and adding the threshold value back again. As with the brighness ...

Hue Luminance and Saturation (HLS) Model and Manipulating Colours       
Total Hits: 319  |  Today: 0 Author: http://www.vbaccelerator.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

Normally in computers colours are described in terms of their Red, Green and Blue components. Whilst you can specify all displayable colours this way, it leaves something to be desired when it comes to picking a colour. For example, most people find it very difficult to determine what RGB values you would use to create a Pink or Brown colour (try it!). The HLS model provides a more intuitive method and enables you to create lighter/darker or more intense/less intense versions of colours very eas...

Developing your first Visual WebGui application - Finishing Up and Conclusion       
Total Hits: 350  |  Today: 0 Author: Guy Peled       Rating:  
Read Reviews | Write Review |              Your Rating: 

Go to the properties pane of the form by clicking on the design form title while the properties pane is open. Change the properties pane mode to show events and double click the Load event. The designer will create you an empty event handler to handle the Load event. Which is executed when a Visual WebGui form is loaded. Create a new method that recieves TreeNodeCollection nodes and string path arguments. From the event handler we are going to call a the LoadFolder method with treeview1.Nodes an...

Developing your first Visual WebGui application - Finishing Up and Conclusion       
Total Hits: 350  |  Today: 0 Author: Guy Peled       Rating:  
Read Reviews | Write Review |              Your Rating: 

Go to the properties pane of the form by clicking on the design form title while the properties pane is open. Change the properties pane mode to show events and double click the Load event. The designer will create you an empty event handler to handle the Load event. Which is executed when a Visual WebGui form is loaded. Create a new method that recieves TreeNodeCollection nodes and string path arguments. From the event handler we are going to call a the LoadFolder method with treeview1.Nodes an...

Introduction to the freeware Info-ZIP libraries       
Total Hits: 376  |  Today: 0 Author: http://www.vbaccelerator.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

This project started when I was trying to build up the indexes for the vbAccelerator site. I had a program to search through all the HTML files which make up the site, and this could pick out the ZIP files linked to by the pages. But how to determine which projects these ZIP files contained? You need a way to read ZIP files. As usual with VB there are no library routines or standard controls available for ZIP files, so you need another way.Luckily there is one, and its free! If you have a look a...

nFS - File System Within a File       
Total Hits: 325  |  Today: 0 Author: Radu Gruian       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article presents nFS, a portable library for emulating a file system within a file. This library has nothing to do with Linux's "NFS".The library is compatible with MSVS/Win32, GCC/Linux and GCC/Solaris. It is written in C. However, because of its clean OOP-like structure, it is easily portable to C++.
Strictly speaking, for performance reasons, the external representation of the file system consists of two files, as described below; however, these two files always go together -- the lib...

nFS - File System Within a File       
Total Hits: 325  |  Today: 0 Author: Radu Gruian       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article presents nFS, a portable library for emulating a file system within a file. This library has nothing to do with Linux's "NFS".The library is compatible with MSVS/Win32, GCC/Linux and GCC/Solaris. It is written in C. However, because of its clean OOP-like structure, it is easily portable to C++.
Strictly speaking, for performance reasons, the external representation of the file system consists of two files, as described below; however, these two files always go together -- the lib...

List Media Player       
Total Hits: 181  |  Today: 0 Author: http://www.martin2k.co.uk       Rating:  
Read Reviews | Write Review |              Your Rating: 

List Media Player is one of the first programs I made. It is simply a way of browsing through your drives and folders to find media files to play - either sound or video. The actual player is on a separate Form, which allows for free resizing.Due to several people asking for the source code, I decided to write this page to explain how the program was made. You can also look at the source code in this file:...

Speaking Alarm Clock       
Total Hits: 357  |  Today: 0 Author: Adalsteinn B. Bjarnason       Rating:  
Read Reviews | Write Review |              Your Rating: 

Alarm application is a fully featured computerized alarm clock. It has unique interface and is stylish. It is based on my first program that I created in 1984 when I had the great Sinclair Spectrum 48K. That alarm clock was noisy when it was not in action :-). This one is hardly usable as a regular alarm clock. That is because of the noisy fan in the computer, I will never get used to sleep with the computer on ;-). The digits are created from a bitmap taken by a digital camera (the original bit...

Speaking Alarm Clock       
Total Hits: 357  |  Today: 0 Author: Adalsteinn B. Bjarnason       Rating:  
Read Reviews | Write Review |              Your Rating: 

Alarm application is a fully featured computerized alarm clock. It has unique interface and is stylish. It is based on my first program that I created in 1984 when I had the great Sinclair Spectrum 48K. That alarm clock was noisy when it was not in action :-). This one is hardly usable as a regular alarm clock. That is because of the noisy fan in the computer, I will never get used to sleep with the computer on ;-). The digits are created from a bitmap taken by a digital camera (the original bit...

Number To Text Converter       
Total Hits: 408  |  Today: 0 Author: pinakvashi       Rating:  
Read Reviews | Write Review |              Your Rating: 

This program is a Number to Text converter. which can convert a given number (range from one to hundred of vigintillion(10^63) ) to the text that people use to pronouce the number.
Feel free to use this code and please give feedback to me. Right now it works for AMERICAN ENGLISH.This code is copyrighted and has limited warranties....



DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com