Simple, functional tools that demonstrate Windows API usage.

Maintaining software in industrial and manufacturing settings. Speed: Creating small utility tools in minutes.

Function GetRAMStatus() As String Dim ms As MEMORYSTATUS ms.dwLength = Len(ms) GlobalMemoryStatus ms GetRAMStatus = Format(ms.dwAvailPhys / 1024 / 1024, "0") & " MB free / " & _ Format(ms.dwTotalPhys / 1024 / 1024, "0") & " MB total" End Function

This project serves as a cornerstone for academic submissions. It handles data entry, storage, and retrieval without requiring heavy external database installations like SQL Server.

This public link is valid for 7 days and shares a thread, including any personal information you added. This link or copies made by others cannot be deleted. If you share with third parties, their policies apply. Can’t copy the link right now. Try again later.

A step up from the basic "Hello World," this project focuses on math functions and UI layout.

Private Sub Form_Load() Dim SysInfo As SYSTEM_INFO Dim Msg As String GetSystemInfo SysInfo lblProcessors.Caption = "Processors: " & SysInfo.dwNumberOfProcessors lblPageSize.Caption = "Page Size: " & SysInfo.dwPageSize & " bytes" lblProcessorType.Caption = "Processor Type: " & SysInfo.dwProcessorType End Sub Use code with caution. How to Compile and Deploy Safely

Build a functional text editor that supports .txt and .rtf files.

The drag-and-drop event-driven architecture teaches fundamental programming logic, form design, and database connectivity without configuration bloat. The Architecture of a Portable VB6 Project

A custom text editor helps developers master file I/O operations and menus in VB6.

The data travels with the app. No ODBC drivers or Access installations required.