Scroll Bar with LONG value...updated
This is an example (the scrollio picture viewer that I convert to take dib) with new control LargeBar Now I can open a 20 Mpixel photo and select zoom 2000%. The code of scrollbar is small. Return from...
View ArticleVB6-SubNet representation
Applying a mask to an IP address is relatively straight forward in "C". You simply do a bit wise "AND" between the two. Because Visual Basic does not do bit arithmetic very well, it is a little more...
View Article[VB6] JPEG-compressed TIFF File Reader (GDI+)
You probably know that GDI+ is useful for loading various image formats, but GDI+ also has issues with every format it loads. For TIFFs specifically, one of the compression options it won't support is...
View ArticleQuery Assistant - connect to databases and execute queries.
What is the Query Assistant? A complete application that makes connecting to databases, executing and executing queries easier. What can it do? 1. Connect to database using Microsoft ADO as specified...
View Article[VB6] ListViewCustomSort Helper Class
I did a search here but couldn't find an existing implementation. There are several out there in the wild, dating back to an old Randy Birch example base on an even older MS KB item on sorting by date...
View Article[VB6] GDI+ Workaround: TIFF > JPEG-compressed images
Note: Tests of successful loading of the image without applying the workaround have been done on various O/S. This patch may not be required on Win7 and above You probably know that GDI+ is useful for...
View Article[VB6] GDI+ Workaround: JPG > Zero-Length APP Markers
Note: Tests of successful loading of the image without applying the workaround have been done on various O/S. This patch may not be required on Win7 and above You probably know that GDI+ is useful for...
View Article[VB6] GDI+ Workaround: BMP > Alpha Channels + JPG/PNG Encoded
Note: Tests of successful loading of the image without applying the workaround have been done on various O/S. This patch appears to be required on Win7 and lower. Win8 not yet tested You probably know...
View ArticleSearch files in folder tree recursively and asynchronously (New Scrollio also)
This is a simple Viewer for Zooming big images, and an example for scrollio control, LargeBar, dib processing and an example of how to search files in folder tree recursively and asynchronously. We...
View ArticleSearch files in folder tree recursively and asynchronously (New Scrollio Ver 4)
This is a simple Viewer for Zooming big images, and an example for scrollio control, LargeBar, dib processing and an example of how to search files in folder tree recursively and asynchronously. We...
View ArticleVideo-Decompression with the VCM (ICM-Win32-API)
Just a small example, how to use the ICM-API (hosted in msvfw32.dll), to decode YUV-RawData-Blobs as they may come in from Web- or other Cam-Drivers... These APIs are still supported also on...
View Article[VBS] IP Adress with Google Speech
Description : This script will display three messages box with 3 different languages ​​with Google Voice Speech. 1. English 2. French 3. Arabic Code: Option Explicit Call Ip_Publique()...
View ArticleFirst attempt for a new compact file selector
This is a work on my glist and myDir class (this class expanded here, but I use it in scrolliodo 4). The good news We bit Android...Yes we can scroll up down (not with super fast move, but with an...
View ArticleTest two vb codes for changes
This is a small program, based on gEditBox. I made this for gEditBox because I have some customize..custom controls and I want to find the differences. It is a fast coding (one day) so...I do the...
View Articleglist4 as file selector, menu and other things
This is a work on my glist and myDir class (this class expanded here, but I use it in scrolliodo 4). The good news We bit Android...Yes we can scroll up down (not with super fast move, but with an...
View Article[VB6] Friend Callback Procedures
The attached project below demonstrates how to set up Friend procedures inside object modules (FRM, CLS, CTL, etc.) for Windows API callback purposes. The goal of such a technique is to keep as much...
View ArticleUsing FileSelector class to make a compact Open File dialog.
This example using the latest glist4 and fileselector class for a compact file loader. From setup menu we can change the sort type, the behavior, the performance (normal recursive 3 levels, recursive...
View ArticleRun VB6 executable on Windows7 using Citrix and thin clients
We are migrating from XP boxes to thin clients and I need help with an old VB6 executable. Presently the VB6 executable is installed on XP boxes. Each location has their own executable. In new...
View ArticleWIA Loader and Saver class
This class allows you to load and save all kinds of image files, including PNG and TIF. It is requires WIA 2.0 which is a Microsoft created DLL file called wiaaut.dll. A complete description of the...
View ArticleSome code to calculate the Greatest Common Divisor
This code sample calculates the GCD of numbers A and B, using the Euclidean algorithm (as described at https://www.khanacademy.org/computin...dean-algorithm). Code: Private Function CalculateGCD(ByVal...
View Article