|
How to find all base classes of any type in .Net
|
Total Hit (3011) |
The following code shows how to print all base classes for a specified object.
«code LangId=2»Function PrintBaseClasses(ByVal obj As Object)
Dim t As System.Type
t = obj.GetType
Do While Not t Is Nothing
Debug.Write(t.Name)
t = t.BaseType
If Not t Is No
....Read More |
Rating
|
|
|
TCPView v2.34
|
Total Hit (3646) |
See all open TCP and UDP endpoints. Full source to the command-line version of this tool, netstatp, is included.
|
Rating
|
|
|
ShareEnum v1.51
|
Total Hit (3160) |
Scan file shares on your network and view their security settings to close security holes.
|
Rating
|
|
|
SDelete v1.2
|
Total Hit (3217) |
Securely overwrite your sensitive files and cleanse your free space of previously deleted files using this DoD-compliant secure delete program. Complete source code is included.
|
Rating
|
|
|
NTFSInfo - View NTFS Volume information
|
Total Hit (4567) |
Use NTFSInfo to see detailed information about NTFS volumes, including the size and location of the Master File Table (MFT) and MFT-zone, as well as the sizes of the NTFS meta-data files.
|
Rating
|
|
|
NewSID v4.03
|
Total Hit (3283) |
Learn about the computer SID problem everybody has been talking about and get a free computer SID changer, SID, complete with full source code.
|
Rating
|
|
|
Inside the Disk Key
|
Total Hit (3415) |
The HKLM\System\Disk\Information value is the heart of NT's disk administration. It contains information on drive mappings and fault tolerant configurations. In this article I go inside the Disk\Information value to describe its format, and provide source code to a program, Diskkey, that reads and d
....Read More |
Rating
|
|
|
Inside Disk Defragmenting
|
Total Hit (4423) |
Find out about the APIs Windows NT Defragmentation products use, and download a free defragmenting demonstration program, complete with full source.
|
Rating
|
|
|
Fundelete v2.0
|
Total Hit (3496) |
This utility expands the NT 4.0 Recycle Bin to catch file deleted from command prompts and within programs, and it comes with full source code. Several powerful device driver techniques, including getting a user's SID within a driver, enumerating a directory's contents, and generating IRPs, are demo
....Read More |
Rating
|
|
|
Formatx and Chkdskx v1.0
|
Total Hit (3189) |
Complete source code for chkdsk and format clone programs. These examples demonstrate the use of file system utility functions that you can incorporate into your own applications.
|
Rating
|
|
|
Device Object Security
|
Total Hit (3198) |
Are your device objects as secure as they should be? Learn what permissions are applied to the objects you create with IoCreateDevice and get introduced to kernel-mode security APIs that can be used to close potential device object security holes.
|
Rating
|
|
|
|
|
|
Interfacing the Standard Parallel Port
|
Total Hit (3500) |
The Parallel Port is the most commonly used port for interfacing home made projects. This port will allow the input of up to 9 bits or the output of 12 bits at any one given time, thus requiring minimal external circuitry to implement many simpler tasks. The port is composed of 4 control lines, 5 st
....Read More |
Rating
|
|
|
|
Interfacing Example - 16 Character x 2 Line LCD
|
Total Hit (3793) |
This is the first interfacing example for the Parallel Port. We will start with something simple. This example doesn't use the Bi-directional feature found on newer ports, thus it should work with most, if no all Parallel Ports. It however doesn't show the use of the Status Port as an input. So what
....Read More |
Rating
|
|
|
|
Working with AVI Files - Part 2 (Working with AVI streams)
|
Total Hit (16890) |
In previous Article «b»«a href='CodeDetail.aspx?Codeid=3612'»Working with AVI Files - Part 1 (Opening and Closing AVI file)«/a»«/b» We learned how to open and close AVI File. We also learned How to read AVI file information using AVIFileInfo api. In this article we will go one step further. Today we
....Read More |
Rating
|
|
|
Working with AVI Files - Part 1 (Opening and Closing AVI file)
|
Total Hit (22208) |
This series of articles will show you step by step approach for working with AVI files in VB using Win32 API. In this article series we will go through following tutorials.
Other articles in this series
«b»«a href='CodeDetail.aspx?CodeId=3612'»Working with AVI Files - Part 1 (Opening and Closi
....Read More |
Rating
|
|
|
|
Create DLLs with VC++ - A Tutorial
|
Total Hit (5046) |
Visual Basic is a very fast and easy tool for developing applications with a high degree of user friendliness, but it lacks some important functionalities like direct access to hardware, multi-threading (Active-X server does allow some type of multi-threading). An easy and effective solution for thi
....Read More |
Rating
|
|
|
|
Parallel port Interfacing Tutorial
|
Total Hit (4318) |
Parallel port is a simple and inexpensive tool for building computer controlled devices and projects. The simplicity and ease of programming makes parallel port popular in electronics hobbyist world. The parallel port is often used in Computer controlled robots, Atmel/PIC programmers, home automatio
....Read More |
Rating
|
|