This collection is inspired by the spirit of early BASIC programming —
simple ideas, fast feedback, and creative experimentation.
Some titles are modern VB.NET projects, built with the same philosophy
that powered GW-BASIC games on MS-DOS.
ICOView 0.01 - This VB.NET program is essentially a custom ICO (Windows icon) file parser and renderer. Instead of relying on Windows APIs to load an icon, it manually reads the ICO file format,
extracts the bitmap data, interprets the color palette and transparency mask, and draws the icon pixel-by-pixel into a Bitmap displayed in a PictureBox.
The code is written more as an ICO format explorer/debugger than a general-purpose icon loader.
It supports:
Single-image ICO files
32×32 icons
1-bit and 4-bit color dephs
Uncompressed bitmap icons
Fixed assumptions such as image offset = 22
MORE TO COME...
MSDetect 0.01 - This VB.NET code is essentially a utility/demo module for system diagnostics and file/system information gathering.
It combines many small helper functions that wrap .NET APIs (and a bit of Windows API + WMI) to inspect files, drives, OS info, environment variables, registry data, and INI files.
It's a: Windows system inspection / diagnostic utility library