JPEG Encoder Class

Save a picture as a baseline JPG file using only vb code. Open source, NO THIRD PARTY DEPENDENCIES, and as fast as typical commercial software when compiled. All JPEG compression code is contained in a single class that can be added to existing projects. There is also an Integer DCT version of this class written by Ron van… Read More »

Area of a Circle Calculator

This code allows the user to find the area of circle by clicking a command button and then typing in the radius of the circle. It is very helpful to anyone working on a calculator project. I am also coming out with area of triangle and square. Private Sub Command1_Click()    Dim Radius   Dim Area    Radius = InputBox(“Type In The… Read More »

Filename from Path

Given a fully qualified path and filename, returns only the filename. Module Function GetFileName(fname As String) As String    Dim i As Long     On Error Resume Next    For i = Len(fname) To 1 Step -1        If Mid(fname, i, 1) = “\” Then            Exit For        End If    Next i    GetFileName = Trim(Mid(fname, i + 1))End Function Usage Private Sub Command1_Click()    ‘ Good for removing the path    MsgBox GetFileName(“C:\Windows\System\moricons.dll”)End Sub

Simple TCP client

A small and simple code to connect two computers using the TCP protocol with winsock control. I’ve added some comments in the code, so any1 should be able to understand easily. Read the ReadMe.txt file for usage instructions. Attachments File Uploaded Size 990-20190828-091633-TCP.zip 8/28/2019 9:16:33 AM 3643

NanoVB6

NanoVB6 is a very compact VB6 version which is smaller than 5 MB when compressed. It is furthermore fully portable – so that it can be run from a usb stick or on BartPE. It is still able to run and compile your projects as long as all ActiveX DLLs, OCXs and TLBs etc. that you referenced within… Read More »

Complete Payroll System

This is a complete payroll system w/ Daily Time Report. This code is intended for those developer who wanted to create their own payroll system. hope this one can help you. Attachments File Uploaded Size 1066-20191122-125432-ComPayroll.zip 11/22/2019 12:54:32 PM 2035070

VB6 Error Code List

This list contains all 658 errors that can happen in Visual Basic 6. The list is useful in debugging problems in your software, and with it, you can decipher a seemingly random number to an actual description of the problem. Code Explanation 0 The operation completed successfully. 1 Incorrect function. 2 The system cannot find the file specified.… Read More »

Visual Basic 6.0 Installer, via Inno Setup

This script converts the conventional Visual Basic 6.0 installer into new and compact setup using Inno Setup. Installing Visual Basic 6.0 on later version of Windows is getting harder due to its outdated installation method especially on Windows 10 where NTVDM is need to enable in order to run VB6 setup. This installation is solved by porting VB6… Read More »

Personal Socks4 Proxy

This is a simple Socks4 Proxy server, comes in a neat little Control you can simply include in any project you want to have a proxy in! Works for almost any program that supports Socks4. Attachments File Uploaded Size 1063-20191120-064519-PersonalSocks4Proxy.zip 11/20/2019 6:45:19 AM 6910

Perfect Tic Tac Toe

Demonstrates the use of variable levels of AI to challenge an opponent at any level. Highest level is unbeatable, lowest level is very easy. This code is HEAVILY documented (see for yourself). Can you beat the “Clever” level? Attachments File Uploaded Size 1062-20191114-132430-TicTacToe.zip 11/14/2019 1:24:30 PM 8862