Area of the Rectangle in VB6

Here is a very simple program that I wrote using VB to compute the area of the rectangle. The code is very short and easy to understand. What does the program will do is to ask the user to give length and breath of the rectangle and the our program will solve for it’s area. Private Sub Command1_Click()   Sum… Read More »

Class Scheduling System

I would like to share here my Scheduling System, this system is only a part of my High School Enrollment System and my College Enrollment System that consist of 8 modules (registrar, grader, controller, scheduler, checker/assessor, collector/cashier, administrator, and the Web Transcript). This system covers timetable for a school, high-school or university. It uses a fast and efficient… Read More »

Full Accounting/Invoicing Program

This is an accounting or invoicing program that i made using databases and rich text files. I tried not to use any complicated OCXs like report designer or any control like that, which I have seen in other submissions. With this program, you can make accounts, delete accounts, edit the account information, enter information into invoice, toggle through… Read More »

Complete Inventory System

It allows the end users to encode the necessary transactions for the products delivered by the supplier and the products delivered to the customer. It has necessary maintenance for the customer, products, suppliers and users for record keeping (with add, edit, delete, save, find and cancel button). Counts the remaining item and prompt messages when in reaches the… Read More »

Word Counter Thing

This is a simple word counter, using the measure of five characters equals a word. It’s pretty simple, containing only four buttons and textbox. The quick demo was written to show the differences between removing nothing, removing spaces, and removing punctuation has on word count. Demonstrated in this project are: Attachments File Uploaded Size 389-20191011-084323-wordcounter.zip 10/11/2019 8:43:23 AM… Read More »

Net Stuff

This program queries the network and shows the Domains/Servers/Workstations structure. It also shows the users of each Server or Workstation and can send messages to the selected PC. David Costelloe has used some examples from http://www.planet-source-code.com and put them all together and manage to produce this sample. Credit should go to the developers who published the orignal source… Read More »

WinLocaleConvert

This program shows the international settings of the country you select such as Format Currency, Date Format, Day Name, Month Name… Usage Example by David Costelloe. The code for the DLL was written by someone else, David got the code from the Internet which was posted for Visual Basic developers. Attachments File Uploaded Size 1047-20191007-094957-WinLocaleConvert.zip 10/7/2019 9:49:57 AM… Read More »

CPUVB

General purpose CPU identification program. With this DLL you can: Attachments File Uploaded Size 1057-20191007-094805-cpuvb.zip 10/7/2019 9:48:05 AM 57112

Quick Mixer V1.8.3

Quick Mixer is a tray-agent alternative to the Windows Volume Control (SNDVOL32.EXE). Attachments File Uploaded Size 1056-20191007-094451-QMixer.zip 10/7/2019 9:44:51 AM 154465

Monitor Printer Queues

Allows you to check the number of waiting print jobs on network printers. Option Explicit ‘Constants DefinitionPublic Const CCHDEVICENAME = 32Public Const CCHFORMNAME = 32Public Const PRINTER_ACCESS_ADMINISTER = &H4Public Const PRINTER_ACCESS_USE = &H8 ‘Types DefinitionPublic Type DEVMODE    dmDeviceName As String * CCHDEVICENAME    dmSpecVersion As Integer    dmDriverVersion As Integer    dmSize As Integer    dmDriverExtra As Integer    dmFields As Long    dmOrientation As Integer    dmPaperSize As Integer    dmPaperLength As Integer    dmPaperWidth As… Read More »