Numeric
I have 10 textboxes that should handle only numbers. This code works really good but i thought there might be some thing simpler. Thank you:wave: Private Sub Text18_Change(Index As Integer) If Not...
View ArticleArray
Is there some way that this can work with an array. Text22(0) through Text22(11) And can it do it on the first day of the month Dim LB As Integer, UB As Integer Dim i As Integer, sText As String With...
View Article[VB6] Working with Libraries (Win7+)
Windows 7 introduced the Library to the filesystem. But it's no ordinary folder. There are a few reasons you'd want to be able to work directly with these objects in VB... the issue first came up for...
View ArticleVB6 - Converting Unicode strings to Byte Array
Visual Basic stores all strings as double wide characters (16 bits). This is no big deal if you are using standard ASCII characters (7 bits), as the first 9 bits are always zero. But when you need to...
View Article[VB6] Subclassing With Common Controls Library
Subclassing... An advanced topic that has become much easier over the years. About the only thing that can be considered advanced nowadays is the added research subclassing requires to properly handle...
View Article[Experimental] VB6 FastCGI Server
I was daydreaming about developing a web interface for my VB6 program, and I thought I'd play around with the Nginx web server since it is dead easy to deploy (no installer required), and LGPL. Nginx...
View Article[VB6] - 3D Fir-tree.
Once I've done this, but this time I added the ability to adjust your creation. To work needed dx8vb.dll (inside the archive, put in a folder with the program). Output by double-clicking....
View Article[VB6] - Translation of the string to a number and vice versa.
VB6 functions for translation and verification of numbers to strings (and back) is very uncomfortable in terms of the fact that there is a lot to write, and they have their "eat." We can write the...
View Article[VB6] - "Lens" on VB6
With this software, you can view a certain part of the screen increases, the increase can change the wheel, exit - ESC. Module: Code: Option Explicit ' Модуль modMain.bas ' © Кривоус Анатолий...
View Article[VB6] - 4d hypercube (tesseract)
I have always aroused the interest of four-dimensional figures, and generally multi-dimensional space. I decided to write a small program where you can twist the four in four-dimensional hypercube in...
View Article[VB6] - Saving pictures to a byte array in the format jpeg, without using file.
This is useful for example to transmit or packaging. It is also possible to make conservation and other similar formats and also the opening of the bitmap memory. Code: Option Explicit Private Type...
View Article[VB6] - Kernel mode driver.
Hello everyone (sorry my English). There was a time, and decided to write something unusual on VB6, namely to try to write a driver. I must say before that I never wrote a driver and have no...
View Article[VB6] - Modify the standard ListBox.
Make a class with which you can modify the drawing standard list. He has event Draw, which is caused when the need render the next element of the list. To work, you need to install in the list of...
View Article[VB6] - Class for subclassing windows and classes.
Hello everyone! Developed a class with which you can work with subclassing. The class has an event WndProc, which is caused when receiving the message window. You can also put on a class subclassing...
View Article[VB6] - Class for waiting asynchronous kernel objects.
Hello everyone! Developed a class for asynchronous standby kernel objects. The class generates an event when setting the object to the signaled state or timeout. Works with any objects.* The class has...
View Article[VB6] - Desktop lens.
Hello everyone! With this software, you can view a certain part of the screen increases, the increase can change the wheel, exit - ESC* module: Code: cy As Long flags As Long End Type Private...
View Article[VB6] - FM-synthesizer Trick FM
Hello everyone! Once upon a time he studied sound synthesis, in particular FM (frequency modulation) method. Was written test program synthesizer. Today I tweaked it a little bit, did GUI, etc....
View Article[VB6] - Multithreading is an example of a fractal Julia.
Hello everyone! I really like fractals and fractal sets. Wrote several test programs, where you can generate and change the settings for different fractals. In this example, you can generate the Julia...
View Article[VB6] - Hypercube (tesseract).
Hello everyone! I have always aroused the interest of four-dimensional figures, and generally multi-dimensional space. I decided to write a small program where you can twist in four-dimensional...
View Article[VB6] HTTP Polling for Disconnected Recordsets
CabTrack is a stripped down example of a central site polling a series of remote sites for data updates. The remote sites accumulate data in a disconnected Recordset until polled via HTTP. Then the...
View Article