VB6 Tutorial 15: Data Type Conversions
You have already learned about various data types in this tutorial site. Now I’m going to explore the concept of data type conversion also known as type casting.
You have already learned about various data types in this tutorial site. Now I’m going to explore the concept of data type conversion also known as type casting.
Columbia does one thing: ping hosts. It does it well, and the bonus is that you can ping groups of hosts all at once.
By utilizing keyboard shortcuts, or hotkeys, you can use your operating system and applications at a much higher level of productivity and efficiency.
By request, this is a explanation and sample project for utilizing the built-in Replace function for VB6. Finding and replacing text within a string is relatively speaking one of the more common functions you’ll perform when working with text. Fortunately, VB6 has included some functions for easing the burden of working with text. One of these built-in functions… Read More »
This is a simple module that will allow you to log events from within your program to a text file. This is more of a string handling demo, but could be useful as a starting point for something bigger. If you’re like me, you like to know what is going in your application. This information comes in handy… Read More »
By adding this DWORD value, you can add the display of seconds to the Windows 10 taskbar clock. You’ll have to restart Explorer in order for the changes to take effect.
When performing certain operations, such as registry edits, you may be directed to restart Windows. However, some items only require the restart of the Windows Explorer process. Here’s how to do it.
Clipboard object is a simple object in Visual Basic 6 that stores data. You can retrieve the data from the clipboard using appropriate methods of the clipboard object.
In this lesson, I’ll talk about error handling in Visual Basic 6. I will discuss, in brief, how you can handle errors in your Visual Basic program.
Validation is a very useful feature in VB6, which you implement in a variety of situations.