VB6 - Multiline Textbox Printer
I had previously used a RichTextBox and the SelPrint routine, but I discovered that routine would not work with an InkEdit Control. With the help of jpbro, we put together a routine for the InkEdit...
View ArticleVB6 - Text Editor
I found a need for addtional functions that NotePad did not provide, so I came up with my own Text Editor. It has most of the functions of NotePad with a couple of extra ones. Code: File...
View Article[VB6] - PE parsing library
This is a set of classes for parsing PE files. Exposes most commonly needed fields such as optional header, imports, exports, relocations, resources, sections, etc. Includes a couple extras such as a...
View ArticleVB6 - Hash10
Now this one makes a lot of sense. I accidentally ran across it while searching for something else. https://docs.microsoft.com/en-us/win...ypt-bcrypthash BCryptHash performs a single hash computation....
View ArticleCheckBoxCombo 1.3 (A professional, effective and ready-to-use Multi-select...
What is CheckBoxCombo? CheckBoxCombo is a general-purpose Multi-select ComboBox User Control designed for Visual Basic. It differs from the conventional ComboBox behavior by allowing user to select one...
View ArticleAdd-In to Replace Fonts
Here's a little Add-In I wrote, primarily for replacing all the MS Sans Serif fonts in large projects I've got, and I thought I'd share. It does allow you to replace any screen-available font with any...
View ArticleDetect DLL support
I found an API call that simplifies the Hash process by combining several steps into one: http://www.vbforums.com/showthread.p...017-VB6-Hash10 It only works with Win 10, and I was curious if there was...
View ArticleVB6 Simple Virtual ComboBox (OwnerDrawn)
As the title says, a simple approach to accomplish ownerdrawing from Data in external Data-Containers in a "DropDown-scenario". As usual with virtual (bound) Controls, they are internally lightweight,...
View Article(VB6) Err.Raise using HRESULT_FROM_WIN32 and vbObjectError
Convert Win32 error using vbObjectError and HRESULT_FROM_WIN32 HRESULT_FROM_WIN32 is the name of a macro used in C to convert a WIN32 error into an HRESULT error (although since XP it has been replaced...
View ArticleGoogle Cloud Natural Language Text-To-Speech
PLEASE SEE THE INCLUDED READ ME FILE FOR COMPLETE INSTRUCTIONS BEFORE RUNNING THE PROJECT Here is a project I did that shows you how to use the power of Google Cloud for next level natural sounding...
View ArticleGetting the selected text in the code window (with an add-in)
I have lots of Doc IDs as comments in my vb project eg Code: 'see doc#25 for more info And i wanted to be able to quickly show the document. This code below will show you the selected text and then you...
View ArticleVB6 - Transit Time Tester V2
Attached is an upgraded version of Transit Time Tester utilizing a subset of SimpleSock. Users sometimes want to know how accessible a certain site is and how long it takes to get to it. The "ping"...
View Article[VB6] Multithreaded Connect 4 AI
This AI uses The trick's multi threading module to search the game tree using the negamax algorithm. My multi threading implementation is not very efficient, as it creates one thread per column,...
View Article[VB6] UcFormResizerLimiter
What it is? A User Control to flicker free limit the resize of a form without the need to add any code to the form. Also (and the reason why I created it) is the ability to disable the limits on the...
View ArticleFast Call COM object (activex.dll) ,Run Windows API
How to test the method of the COM object (activex.dll) in real time and run the windows api? 【Organizing, testing the project, and uploading examples after completion】 Method 1: Use VBS to create new...
View ArticleVb6 OpenOffice sdk(com.sun.star.ServiceManager)
need install jdk first OpenOffice_sdk http://www.openoffice.org/api/basic/...l/tutorial.pdf JDK1.8 32bit jdk https://www.7down.com/soft/267473.html OpenOffice4.1.7 https://www.openoffice.org/download/...
View Articlevb Fast Crc32 (crc32str,Crc32File)
Running speed test record: average time,Evaluation object ==================== use CbsPersist_20200521111942.log(161m),not 7z format time(ms) TestObject 125.76 Crc32_Wqweto 281.03 Crc32ByAsm 326.17...
View ArticleFriend in Class1-VB6 calls multiple methods to run speed test
Optimized for vb6 running speed call function Fastest c=Bas_Sum(a,b) call Friend is quick than "public function",The operating speed is 4.6 times faster ----------- Class_OBJ 452.38 (dim a as class1...
View ArticleAlt+NumPad input for Unicode TextBox with surrogate pair support
When using Alt+NumPad for Unicode input I get a bogus character in Notepad/Notepad++ and all other Unicode TextBox implementations that I tried. WordPad and InkEdit, on the other hand. works OK,...
View ArticleVmware Sdk For vb6(VixCOM64.dll),vbs-CreateObject("VixCOM.VixLib")
Need VMWare VIX Automation Tools and SDK Code: 'Reference 'C:\Windows\SysWOW64\regsvr32.exe ***\VixCOM64.dll 'Reference VixCOM64.dll TO vb6 Project Dim lib As VixCOM.VixLib Dim vmPath As String Private...
View Article