VB5/6/VBA - HeapsortVarVar, Another VB Sort
This is a VB6 static (.BAS) module for sorting a Variant array of Variant arrays using the Heapsort algorithm. It could easily be converted to a class (.CLS) if desired as well. It should be usable in...
View ArticleVB6 - SillyStream Encrypted Text I/O
While hand-rolled encryption is never a good idea, sometimes you don't need a high-security solution. SillyStream is a text I/O class that you can set a few parameters on and then do low-volme...
View Article[RESOLVED] [VB6] Coloring Excel Cell from VB6
Hi Guys, Do you have any idea how to set excel cell from VB6 Codes? Set ExlObj = CreateObject("excel.application") ExlObj.ActiveSheet.Cells(1, 1).Columns.ColumnWidth = 18 ExlObj.ActiveSheet.Cells(l,...
View ArticleHow to Make a Round (Circular) Form
Ever want a round form? This short VB6 code will create it for you. I know it works on XP and Win7. Not tested on Win8. Open a new VB6 project I added two shapes and one label to the form---not...
View ArticleHere's How to Make a Form With a HOLE in it.
Want a form that you can move around and see what is behind the center of it? Not sure what good it is, but it's kinda cool. Maybe you can find a good use for it. Noting to add to a project---only the...
View ArticleVB6 - MMapper, Memory Mapped File Demo
Background People are often scrounging for easy to use IPC alternatives for Visual Basic programs. Windows offers a ton of choices, but unless you can state your requirements it is difficult for...
View Article[VB6] Steam Account/Password Manager 1.0.1 (Account Safe, Fully encrypted) [SRC]
As i said a few weeks ago i believe 9 weeks ago. I was planning on making such a app. Here is it. I made it a while ago by now. But uhm just uploads it now. Demo: Download: See attached zip file. Have...
View Articleoperator & is not defined for string"select....."and data row view
i have 2 ddls and i want to populate the second one based on the value of the first one. so i went on to use a row filter to filter the data view to get the data i need on the second ddl but when the...
View ArticleCommonControlsEx (Replacement of the MS common controls)
This project is intended to replace the MS common controls for VB6. As for now, the MSCOMCT2.OCX can be replaced completly. (Except the FlatScrollBar control, because this is not supported on...
View ArticleCreating a window by using the API
The attached code (Create Window.zip) demonstrates how to use the CreateWindowEx API function to create a window and controls inside it. Attached Files Create Window.zip (3.8 KB)
View ArticleExpore and create desktops
Desktop Explorer demonstrates get a list of active window stations and any desktops attached to them. The program also allows the user to create a new desktop and launch programs on it. Depending on...
View ArticleHow to create a console application
Console is a program that demonstrates how create a console and write text to it. It also demonstates how to read user input and how to set/get the console's properties such as its title. When...
View ArticleExplore and create desktops
Desktop Explorer demonstrates get a list of active window stations and any desktops attached to them. The program also allows the user to create a new desktop and launch programs on it. Depending on...
View ArticleReading the memory of another process
The attached program demonstrates how to read the memory of another process. The user can either launch a new process or specify the process id of a running process. The result is saved in a file....
View ArticleWord Wrap
a basic WordWrap program i created or modified from various source codes found on the InterNet . it does not do a 100% percent job on every type of Text entered, so please feel free to help improve...
View ArticleClient/Server - a winsock example
Client/Server is a program that demonstrates how to use winsock to connect to a server or how to accept connections from a client. The program allows the user to send and receive data. Non printable...
View ArticleCode for a four point transformation of an image
This code can be used to manipulate an image into any space defined by four corners. Unlike an affine-transform (3 point transformation) which uses a parallelogram shaped space, this 4 point...
View Article[VB6] Function Wait (non-freezing & non-CPU-intensive)
This routine waits for the specified amount of time without freezing the GUI or raising up the CPU usage. Code: Private Type MSG hWnd As Long Message As Long wParam As Long lParam...
View Article[VB6] Shell & Wait
The module included in the attachment contains 3 routines that supplements VB's intrinsic Shell function by waiting for the shelled program to terminate before resuming with the next line of code...
View ArticleClient/Server a raw TCP client (Winsock example.)
Client/Server is a program that demonstrates how to use winsock to make raw TCP connections to a server and how to accept connections from a client. The program allows the user to send and receive...
View Article