[VB6] Modern Shell Interface Type Library - oleexp.tlb
oleexp.tlb : Modern Shell Interfaces Current Version: 1.3Previously the latest version of this sub-project was just included in whatever code I released that depended on it, but now I'm going to make...
View Article[VB6] Win7 Taskbar Features with ITaskbarList3 (overlay, progress in taskbar,...
ITaskbarList Demo Windows 7 introduced the ITaskbarList3 and ITaskbarList4 interfaces that added a number of new features to the taskbar for your program. The most commonly seen is the ability to turn...
View ArticleHSV and RGB conversion
Here's some code I wrote that you can place in a Module and use in any graphics program that needs to convert RGB to HSV or HSV to RGB. Code: Public Sub RGBtoHSV(ByVal R As Byte, ByVal G As Byte, ByVal...
View ArticleVB6 QR-Encoding+Decoding and IME-Window-Positioning
This Demo depends on vbRichClient5 (version 5.0.21 and higher), as well as the latest vbWidgets.dll. One can download both new packages from the Download-page at:...
View Article[VB6] Virtual 5.0 ListView
Here is another take on the classic vbVision Virtual ListView from 2001. It has been substantially reworked to remove the IDE-testing dependency on the old Dbgwproc.dll that most people don't even have...
View Article[VB6] FYI: a better `Property Timer As Single`
`Timer` global property comes handy for measuring elapsed time or for logging time-stamps. It basically returns number of seconds since midnight with 2 digits precision. Usually to measure elapsed...
View Article[VB6] High Quality Multimodal Printing
This is a refinement of a .BAS module I answered a question thread with. Basically the module has some helper functions for printing. These let you print in a non-WYSIWYG manner in a sort of "desktop...
View ArticleSimple Delay Sub
Below is some code that enables you to delay execution for a specified number of milliseconds. It uses DoEvents and Sleep to minimize the CPU load when waiting for the specified time. This runs in...
View ArticleMsgBox replacement with Optional Timeout
The code below is a replacement for MsgBox that is Unicode, runs on VB5/VB6 and all versions of VBA including 64-bit as in 64-bit Office 2010 and later. It uses an undocumented function for an optional...
View ArticleVB6 - Converting Unicode strings to Byte Array
Visual Basic stores all strings as double wide characters (16 bits). This is no big deal if you are using standard ASCII characters (7 bits), as the first 9 bits are always zero. But when you need to...
View Article[VB6] Subclassing With Common Controls Library
Subclassing... An advanced topic that has become much easier over the years. About the only thing that can be considered advanced nowadays is the added research subclassing requires to properly handle...
View Article[Experimental] VB6 FastCGI Server
I was daydreaming about developing a web interface for my VB6 program, and I thought I'd play around with the Nginx web server since it is dead easy to deploy (no installer required), and LGPL. Nginx...
View Article[VB6] - 3D Fir-tree.
Once I've done this, but this time I added the ability to adjust your creation. To work needed dx8vb.dll (inside the archive, put in a folder with the program). Output by double-clicking....
View Article[VB6] - Translation of the string to a number and vice versa.
VB6 functions for translation and verification of numbers to strings (and back) is very uncomfortable in terms of the fact that there is a lot to write, and they have their "eat." We can write the...
View Article[VB6] - "Lens" on VB6
With this software, you can view a certain part of the screen increases, the increase can change the wheel, exit - ESC. Module: Code: Option Explicit ' Модуль modMain.bas ' © Кривоус Анатолий...
View Article[VB6] - 4d hypercube (tesseract)
I have always aroused the interest of four-dimensional figures, and generally multi-dimensional space. I decided to write a small program where you can twist the four in four-dimensional hypercube in...
View Article[VB6] - Saving pictures to a byte array in the format jpeg, without using file.
This is useful for example to transmit or packaging. It is also possible to make conservation and other similar formats and also the opening of the bitmap memory. Code: Option Explicit Private Type...
View Article[VB6] - Vocoder.
Hello everyone. Creating music, I've seen a lot of different virtual instruments and effects. One of the most interesting effects is the vocoder, which allows you to modulate his voice and make it...
View Article[VB6] - Kernel-mode driver.
Hello everyone. There was a time, and decided to write something unusual on VB6, namely to try to write a driver. I must say before that I never wrote a driver and have no programming experience in...
View Article[VB6] - Circular spectrum visualizer.
Representing the source code and compiled program graphical visualizer audio spectrum. The sound is analyzed through a standard recording device Windows, ie You can select the microphone and view range...
View Article