[VB6] How to embed console in a VB6 form
This is the cheapest implementation by using cExec redirection of input/output streams to emulate embedded console of cmd.exe into a black colored textbox on a VB6 form, much similar to how VS Code and...
View Article[VB6, twinBASIC] Getting the full path of all processes when not elevated
If you've used programs like ProcessHacker or ProcessExplorer you might have noticed that you don't need to run them elevated to see the full paths of all the running processes. If you've ever tried...
View ArticleGroup View in sysListView32 created from CreteWindowEx.
Can someone give me a small example how to fix this with grouped items in a sysListView32 without posting out a whole sample? I can add groups to the LV but not attaching items to the group.
View Article[VB6] Event based file system watcher in single self-contained class
This is based on the similarly named System.IO.FileSystemWatcher in .Net Framework. Most of the code is hoisted from a fafalone submission here in these forums. Code: ' cFileSystemWatcher.cls...
View ArticleLVGROUP Type doesn't release it's previous values??
I'm trying to use Internet History in one LV Group and in second LV Group are the system drives populated. So good so far but I'm not able to set neither Header text or iTitleImage Image for that...
View Article[RESOLVED] LVGROUP Type doesn't release it's previous values??
I'm trying to use Internet History in one LV Group and in second LV Group are the system drives populated. So good so far but I'm not able to set neither Header text or iTitleImage Image for that...
View ArticleA "Wraparound" IUnknown so the 3 members got visible.
Since IUnknown Interface (which is the stemfather of most of all the Interfaces in the Shell32 Interfaces I see it abit awkward why just this interface shall be "hidden" within the OleExp TypeLib (It...
View Article[VB6/VBA] Pure VB6 impl of AES in CBC mode
Description mdAES.bas is a pure VB6 implementation of AES block cipher and AES in CBC mode w/ PKCS#5 padding. Usage First you have to initialize AES context with CryptoAesInit (incl. initial Nonce for...
View ArticleExposing the IContextMenu in a different way :)
I did find a intressting shell32 API in the MSDN which not have been outed before in this forum. I tried it but I did get a very unexpected error. Maybe we can cooperate to make this work? This API on...
View ArticleHow to encapsule in a efficient way both VBA Scripting and IShellItem handling.
This demo shows how you in an efficient way you can incorporate, take advantage of and encapsule both methods in one control. The methods are the two way of enumerations. The first one is more basic...
View Article[VB6/VBA] Pure VB6 impl of AES in CBC and CTR modes
Description mdAES.bas is a pure VB6 implementation of AES block cipher and AES in CBC mode (w/ PKCS#5 padding) and in Counter mode. Usage First you have to initialize AES context with CryptoAesInit...
View Article[VB6/VBA] Pure VB6 impl of AES in CBC, CTR and GCM modes
Description mdAES.bas is a pure VB6 implementation of AES block cipher and AES in CBC mode (w/ PKCS#5 padding) and in Counter mode. Usage First you have to initialize AES context with CryptoAesInit...
View ArticlevbRichClient: Backup solution of development drive
I am trying to establish an efficient backup system. Until now I create backup copies of my project folders each 6 hours using 7z. These backup files are synched with Google Drive via the Google Drive...
View Article[VB6/VBA] Pure VB6 impl of AES in CBC, CTR, GCM and SIV modes
Description mdAES.bas is a pure VB6 implementation of AES block cipher and AES in CBC mode (w/ PKCS#5 padding) and in Counter mode. Usage First you have to initialize AES context with CryptoAesInit...
View ArticleA VERY MUCH used function in my "Browse For Folder" sysTreeView
This function is ONE OF THE TOP MOST repeated and used function in my "Browse For Folder" UserControl so I felt a "guilt" to share it you all ;) Because it's so handy och usable ;) BUT be aware!! IF...
View ArticleI couldn't just help it :) :)
1. Start a new project. 2. Add a command button to the main form from the toolbox to the left. 3. Double-click on the command button in design mode and add this code: 4. Click on the "run" toolbar...
View Article[VB6] Cairo BRUSH
I present the class I have named cCairoBrush. It is not entirely complete, in fact initially I had thought of not posting it in CodeBank, but then I changed my mind because it seemed good enough and...
View Article[VB6/VBA] Pure VB6 impl of AES in CBC, CTR, GCM and CCM modes
Description mdAES.bas is a pure VB6 implementation of AES block cipher incl. AES in CBC mode (w/ PKCS#5 padding) and in Counter mode. Usage First you have to initialize AES context with CryptoAesInit...
View ArticleRenaming Items a la Explorer ;)
Have you ever wondered how the Explorer.exe renaming the folder items when you perform it? Just single renaming so far. But it's powefull ;) So be care of what you wish ;) Never BEFORE shown in this...
View Articlehow work with pointers on VB6?
now i'm trying creating a Pointers class: Code: Option Explicit Dim pont As Long 'getting a variable pointer: Public Sub GetPointer(ByRef valor As Long) 'permite aceitar o sinal de igual pont =...
View Article