Client/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 ArticleImage Monitor
Image Monitor is a program that captures any image copied to the clipboard and saves it in a directory specified by the user. It's also a demonstration of how to write vb6 programs that display a...
View Article[VB6, VBScript] Open File Location
This VB6 project and VBScript file provides functionality similar to Windows Vista & 7's "Open file location" context menu for pre-Vista OSes. In Vista & 7, shortcut files have a handy context...
View ArticleMenu Explorer
Menu Explorer displays a list of menu's found in any active windows, and displays the items found these menu's. The user can disable/enable these items. Note: there appear to be several types of menu's...
View ArticleList Processes - Get module and thread information of all processes.
The attached program demonstrates how to gather detailed module, subsystem and thread information of all active processes. This information is then written to a file. Attached Files List Processes.zip...
View ArticleList Processes - Get module and thread information of all processes.
The attached program demonstrates how to gather detailed module, subsystem and thread information of all active processes. This information is then written to a file.
View ArticleSimple PSD File Generator
I finally figured out how to do this. It generates a native Photoshop PSD file, 3 channels, 8bits per pixel, 256x256 size image. I set all the header stuff as constants basically (though I didn't use...
View ArticleTextBin - Extract text from binary files
The attached program demonstrates how to extract strings containing only specific characters from a binary file. The project contains a class called TextBinClass and a form TextBinDemoWindow. The class...
View Article[VB6] modShellZipUnzip.bas
Code: Option Explicit 'Decompresses the contents of SrcZip into the folder DestDir. Public Function ShellUnzip(ByRef SrcZip As String, ByRef DestDir As String) As Boolean Const FOF_NOCONFIRMATION...
View ArticleHTML Document Explorer
The attached program demonstrates how to access HTML documents being displayed by other processes. Attached Files HTML Document Explorer.zip (18.1 KB)
View Articlewinsock chat general
1: how would i go around adding friends to logged in id's and remove friends from friends list . any answers are acceptable need your idias friends.
View ArticleExecute with Acess Denied permission
Hello, I am impressed by few Antiviruses applications. I am getting 'Access Denied' message on killing them via Process Manager in Windows. So My question is, How can we create such application in VB6...
View ArticleVB6 - Thumbnail view based on WIA 2.0
Background As camera resolutions get higher and higher VB6's native image manipulation can get bogged down. This is especially true if you need to do some processing on he thumbnails such as dealing...
View ArticleVB6 - MSChart XY Scatter Demo
MSChart is a very complex control. Sometimes it can be frustrating to get just what you want out of it. An example is a "scatter plot" of the sort shown here. Code: Option Explicit 'Just plop an...
View Article[VB6] Form-less CommonDialog (comdlg32.ocx)
It is possible to show the common dialogs without using a Form to put the ActiveX control in. Here's how: Code: 'In a BAS module Option Explicit Private Sub Main() Const cdlCCFullOpen = 2&,...
View Article[VB6] Uncompressed AVI Writer
Here is a minimalistic cAviWriter class (less than 200 LOC w/ no dependencies) that can be used to create uncompressed AVIs for use in standard animation control. Code: Option Explicit...
View Article