Browse by Tags
All Tags »
C# (
RSS)
Recently, I've been doing a lot of invoking .NET Assemblies within SQL Server 2005, I bloged an overview of SQLCLR here , also I posted about how to implement aggregation function in C# here . Actually invoking .NET code has many advantages but at...
This post will contain only a simple console application source code about how to detected the insertion or removal of any USB device, for more details on the code please read USB Port Insert / Remove detection using WMI using System; using System.Collections...
Almost all modern peripheral devices use the USB port as an interface to connect to the pc. This post will show how to detect an insertion or removal of a device in a USB port. I will use the Windows Management Instrumentation (WMI) which is a component...
Since I'm working on my graduation project ( Iris recognition system ) using C#, I got involved in building the basic methods of image processing such as: image enhancement, convert to gray, convolutions, edge detectors etc... , so I have to reach...
An image in a computer consists of three main color channels, they are RED, GREEN, and BLUE. So each pixle in an image has three values one for each channel ranging from 0 up 255. In order to get the gray scale of an image one channel should be used instead...
Hi, I saw a post on the ASP.NET website that requires the following: Word files with names of particular date are stored in folder at webserver(i.e name of word file should be a date like 2.20.2007) This word file name format is like: 10.20.2007.doc One...
By Default, we can't upload files with size more the 4Mb, because it's already configured in the machine.web file. as follows: < httpRuntime maxRequestLength = "4096" /> where 4096 in kb Although you can overload these settings...
In this post I’ll show how to upload files to a server directory, and discuss several used techniques step by step. In ASP.NET, files can be uploaded many ways. One way is to use the FileUpload control because it’s easy and ready to use. Some...