vb 6 A great site in Bosnian with tutorials
A great site in Bosnian with tutorials for all http://amicus.ba
View Article[VB6] "HashTub" - a collection class
We have a very versatile Collection class built into VB6 and we also have Scripting.Dictionary. Most of the time one or the other of these is all we need. But sometimes we have a special need for...
View ArticleNew to Visual Basic- need help with coding for Microsoft word purposes
I am brand new to visual basic, using it to make documents within Microsoft Word 2016 easier to use. Right now I am designing a userform to ask for data to be entered into a textbox and then for the...
View Article[VB6, Vista+] Finding and deleting invalid shortcuts with IShellLink and...
Dead Link Cleaner So I went looking for a utility to do this for me, and couldn't find one that either itself or its installer didn't look shady/spammy. Since shell interfaces are my favorite thing...
View Articlelite weight progress bar control with percent
digging through old projects and found this small control I thought I would share. very lite weight progress bar user control, drop in replacement for mscomctl one and includes some extra features like...
View Article[VB6] CC6 Graphical Buttons
We have "graphical style" command buttons, but they won't accept Common Controls 6 UxTheme adjustments. However I have found a way around this: Code: Option Explicit 'Demonstrates using CommandButtons...
View Article[VB6] Extending the DataGrid Control
Been playing with the DataGrid control to see if it could be usable in a project of mine. It's not a bad control, just a bit under-powered. Caveat: The code and this posting is 99% focused on using the...
View ArticleVB6 - Unicode ListBox/ComboBox
After dilettante pointed out that the MS InkEdit Control could be used to support Unicode non-latin text, I used it effectively in one of my projects. But I was still looking for a ListBox that would...
View ArticleVBFlexGrid Control (Replacement of the MSFlexGrid control)
This project is intended to replace the MSFlexGrid control for VB6. The "MSFLXGRD.OCX" can be replaced completly. Even though some enhancements of the MSHFlexGrid control are included, it can't replace...
View ArticleVB6 - FisherYates shuffle
Attached is a short demonstration of the FisherYates shuffle. In this particular case we wanted to be able to restore the shuffle back to it's original format, so we had to ensure that the Random...
View ArticleVB6 ThemedControls.ocx (uxTheme-based replacements for SSTab and VB.Frame)
The title says it already - this is a project which shows how to use the uxTheme.dll (without any involvement of the comctl32.dll), to render directly onto the default-hWnd of a VB6-UserControl. In the...
View ArticleLayered Form + InkPicture = DoodleTop
One of the things we got when mainstream desktop Windows inherited the infrastructure from XP Tablet Edition was the InkPicture control. While there are lot of things you can do with this, few people...
View Article[VB6] Bi-Color Dot/Dash using drawing methods
Most of us are already aware of the limitations of DrawStyle with the VB6 drawing methods (Line and Circle). The main one being that even a "dot" is more of a "dash" and more importantly that these are...
View ArticleFormatNumber Function for Other VB6
If anyone can improve it, feel free, and please post your improved function this thread. Code: Private Function FormatNumber(Expression As String, _ Optional NumDigitsAfterDecimal As Integer,...
View ArticleVB6 - IPWhois V3
IPWhois is a utility program that can be used to query Whois servers to find out where and to whom an IP address is assigned. Now why would you want to do that? There are some instances when all you...
View ArticleUtility to generate code to create Access databases using DAO, based on a...
This utility can be used to generate the code to create an Access *.mdb database using DAO, based on a model database file. If you want to avoid shipping an empty database with your program, then you...
View ArticleVB6 - Base64 Encoding
Below is a class to encode strings or files in Base64. The data can be sent to the class as an ANSI string, a Unicode string, or a Byte Array. The sample program provided demonstrates the usage. J.A....
View ArticleNeed Assistance in Coding an Auto-typer tool
I am trying to develop an autotyper which transfers the text file to any third party application in which copy paste is disabled. I have filled the form with the required buttons and Labels that needs...
View ArticleVB6 - File Transfer
During the process of upgrading my JACMail program to use SimpleSock, I ran into an issue when transferring large attachments. The program became noticeably faster using SimpleSock, but that speed...
View Article[vb6] Unicode Browse For Folder
This is a unicode-compatible "Browse For Folder" dialog implementation. It offers options to customize the dialog beyond simple examples you may have seen. I have moved this to its own thread from the...
View Article