Encrypted File Transfer
Attached are sample programs that facilitate sending a file over the WAN (Wide Area Network) fully encrypted. Transferring a file unencrypted over the Internet using SimpleSock is usually quite...
View Article[VB6/VBA] SHA-3 pure VB6 implementation in 266 LOC
This mdSha3.bas module includes CryptoSHA3 function that can be used to calculate SHA-3 hash in all bit-sizes: SHA3-224, SHA3-256, SHA3-384 and SHA3-512. The module also includes CryptoKeccak function...
View Article[VB6/VBA] SHA-3 pure VB implementation incl. HMAC
This mdSha3.bas module includes CryptoSha3 function that can be used to calculate SHA-3 hash in all bit-sizes: SHA3-224, SHA3-256, SHA3-384 and SHA3-512. The module also includes CryptoKeccak function...
View ArticleHere's how to reference the same variable in 2 different ways.
This is similar to the way a union works in C or C++. It works by applying custom settings to a SAFEARRAY structure (aka safe array descriptor). I've done a lot of commenting on the code, so others can...
View ArticleLarge arrays (when arrays don't fit in memory)
Sometimes we need to store a lot of data in memory, but we find two restrictions: 1) VB6, as any 32 bits process, has a limit of using 2 GB RAM. It can be extended to 4 GB setting LARGEADDRESSAWARE but...
View Article[VB6/VBA] X25519 for ECDH key exchange and Ed25519 for EdDSA signatures
This mdCurve25519.bas module implements X25519 key exchange and Ed25519 signatures in pure VB6. EdDSA signatures use SHA-512 hashes internally so you'll need mdSha512.bas from this thread included in...
View Article[VB6/VBA7] CNamespaceWalk (Using the INamespaceWalk interface)
This project is intended to demonstrate how to implement the INamespaceWalk interface. It uses lightweight COM and no .tlb is required and no VTable subclassing is used. This means that the source...
View ArticleAdd-In to change the "default" size of code windows while in IDE design mode
Ok, this is a VB6 Add-In to change the default size of Code windows. On my computer, I always delete the VBW files. So, when I open code windows, their width is some "default" size. On my computer,...
View Article(VB6) ColorDialog: a color dialog replacement
The Windows color dialog seems a bit outdated to me. Here is a new one that can replace it. Current limitations are: since it is a dialog that has some captions, it needs translations to different...
View ArticleClear Immediate Window
This has probably been posted before, but I thought I'd do "my version" of this. Compile the Add-In and save the DLL to wherever your Add-Ins are, and then load it (via your Add-Ins Manager) and you'll...
View Article(VB6) Virtual LED control
It simulates a LED (light emitting diode). Properties: Color: Red/Green/yellow/Blue/White/Custom (the Custom color is defined from properties BorderColor, ColorOn and ColorOff) State: On/Off/Blinking...
View ArticleClear Immediate Window (Add-In)
EDIT1: I added the option to "Clear" to the Immediate Window's context menu. It's probably more useful there than as a separate button anyway. This has probably been posted before, but I thought I'd do...
View ArticleOpen module with text editor from Project Window's context menu (Add-In)
This is an add-in I've wanted for a long time. It opens modules (or the VBP file if that's what you're on) from the context menus within the VB6 IDE's Project Explorer Window. Just compile it, save the...
View ArticleRight-click Type (UDT) usage in code and go to its Declaration (Add-In)
IMHO, this was a major oversight in the VB6 IDE that should have been included. We can right-click in code (getting context menu and selecting "Definition") and go to the declarations of about...
View ArticleRegistry Free Object Instantiation using DirectCOM & RC6
There are a few variations of this kind of reg-free "bootstrapping" module already circulating, but I wanted to write one that was highly commented in the hope that it will help some newcomers better...
View ArticleLOGIC_GATES in VB6
Dear All Just recently I have developed a code on Logic Gates in VB6. Hope it will be helpful to some of them here. The Original code belongs to Use Adlib Logic, I don't know the name of the Original...
View ArticleVB6 - GetFile
Attached are sample programs that facilitate downloading a file from a remote server using encryption. It was adapted from SendFile. https://www.vbforums.com/showthread....-File-Transfer The encryption...
View ArticleFunction for checking if a property or method exists inside a object
After searching for different ways to check if a method exists, i found that most of them were either slow (using TLI objects) or used error handling while also calling the method, then after some...
View ArticleVB6 MSHFlexGrid & MSFlexGrid vertical & horizontal scroll MouseWheel Roll and...
Many modern mice have scroll wheels which can tilt left or right to allow for horizontal scrolling of wide documents like spreadsheets and web pages. The attached program demos a module that allows you...
View Article[VB6/VBA] QR Code generator library
mdQRCodegen.bas is a single file no dependency pure VB6 implementation of a QR Code Generator based on https://www.nayuki.io/page/qr-code-generator-library Just add mdQRCodegen.bas to your project and...
View Article