[VB6] AddIn IDE Codefolding
This is an add-in to Add Codefolding like capabilities to VB6 IDE Unfortunately VB6 doesnt support codefolding so I came with an idea to mimic its functionality by relocating part of the code...
View ArticleCreate Procedure Headers
Creates a Procedure Header and copies it to clipboard , to be copied into your code. Very simple code. Attached Images Attached Files Proced Header.zip (7.7 KB)
View ArticleSimple Usercontrol Toggle/Button
This is a simple toggle/Button usercontrol I threw together. Its probably not perfect, but still useable. See what you think of it. Enjoy. Attached Images Attached Files Button.zip (9.5 KB)
View ArticlePrint to specific PDF file name
Assumes Windows 10 with the optional Microsoft Print to PDF driver installed. This is normally the default unless the user has removed it via Windows Features. Bare bones example. Note that for the...
View ArticleScramble letters in a word except for the first and last letter
This will scramble the letters in a word. Attached Images Attached Files ScrambleLetters.zip (2.7 KB)
View ArticleImage Viewer
Attached is a Picture Viewer. It does not have a bunch of fancy features, because the intent was to use as much of the screen as possible for the image itself. Inspiration for this program came from...
View ArticleFloating Desktop Date
Sits on desktop and features week of year and day of year as well as the date and day. Plus 4 form styles. Fairly simple and straight forward. Attached Images Attached Files DesktopDay.zip (204.2 KB)
View ArticleSend Picture
Attached is a Remote Picture Viewer. It is designed to allow you to post pictures to a remote computer. The Receiver is essentially the Picture Viewer here:...
View Articleleandroascierto.com -> define('DISALLOW_FILE_EDIT', true);...
G'Day I do not know any other site that Leandro uses to post this, so if it is in the wrong 'Category' admins pls. move I check the site http://leandroascierto.com/ usually weekly and now I'm getting...
View ArticleTaskbarButton Progress
Lightweight, no typelib used just DispCallFunc() hacking. Requires Windows 7 or later, but the manifest is optional. Works in the IDE but uses subclassing so be cautious. Demo client Form included:...
View ArticleucListPlus (ListBox, ComboBox, Menu, Autocomplete TextBox)
Hi guys, here is my latest hobby, it is a multipurpose usercontrol, it fulfills the function of a list and tries to fulfill the function of almost everything that is a simple list, ListBox, ComboBox,...
View ArticleSimple Progress Bar
Here is a simple progress bar using a Label control. Form contains 1 Command button (Command1), 1 Timer (Timer1), and 1 label (PBar): Alignment = 2 - Center Appearance = 0 - Flat BackColor = (your...
View ArticleHSlider - Small slider control
Inspired by things like the volume slider in the YouTube web page video player UI. Plenty of ways it could be customized. Good for things like putting a volume slider into toolbars, statusbars, etc....
View ArticleCreate Controls Name
Create and save a control name for your projects. Attached Images Attached Files CreateControlNames.zip (4.1 KB)
View ArticleSlider by Ken
A simple slider control. Nothing fancy , but maybe it can be useful. See what you think of it. Enjoy. Attached Images Attached Files SliderKLF.zip (3.6 KB)
View ArticleFind In Files
Like many programmers, I have a large collection of source code. I wrote this to ease searching for text in vb files. The file display uses Scintilla, so if you don't have SciLexer.dll here is the Url...
View ArticleMirage Source 5
An open source VB6 gaming engine which uses DirectX 8 and flat file storage. This engine was incredibly popular back in the early 2000's and spawned a whole community of game developers, including...
View ArticleSimple Usercontrol Assistant
This is not ,by far, a complete and error free app. It will help in developing the properties for a control . Knowledge on usercontrols is still needed though. Feel free to use and improve on it. Enjoy...
View ArticleClsComDlg.cls【VB6 api for comdlg32.dll without COMDLG32.OCX】
Code: 'in form1 Private Sub Command1_Click() Dim A As ClsComDlg Set A = New ClsComDlg A.ShowColorFlags = cdlCCFullOpen Or cdlCCRGBInit A.Color = vbYellow A.ShowColor (Me.hWnd) Me.BackColor = A.Color...
View ArticleUser Control Assistant 2
This is a remake of my previous submission. You can now generate all properties at the same time, except for Font property, which uses a separate button . Lists can be edited to your needs. Hope this...
View Article