Visual Basic 6.0

Posts related to the classic Visual Basic 6.0 language

Multi-verse of Basic: Using VB.Net Control in VB6 Application

You wouldn’t be thinking of doing this unless you’re supporting old/legacy applications that cannot be upgraded. Heck, you might not even know what VB6 is 🙂 That’s exactly why this kind of article rarely ever gets written 🙂 And that’s one of the main reasons I created a blog — so I can post these …

Multi-verse of Basic: Using VB.Net Control in VB6 Application Read More »

You gotta move it, move it — VB6 Magic :)

This is just a “fun” coding blog, but who knows, maybe you’ll find a good use for it on your projects 🙂 The goal is simple — move the control somewhere else — just like magic 🙂 Design (Setup) Super simple, just add the following to the default form: Command Button (to trigger the action) …

You gotta move it, move it — VB6 Magic 🙂 Read More »

Callable Classes in Python, VB.Net and VB6

Let’s do some multiverse madness here and do something specific but do it across different programming languages! 🙂 For this one, let’s make the class or rather the instance of it — callable; that is, instead of the client invoking its method, we invoke itself. What do I mean by this? Most of us call …

Callable Classes in Python, VB.Net and VB6 Read More »

ByVal & ByRef in VB6 — When to use which?

One of the things new (or even experienced) VB6 programmers need to know about are the relevance/importance of ByVal and ByRef when passing parameters to a function or subroutine, as not knowing this could cause hard-to-detect bugs and unexpected results — and not being able to create more advanced codes. ByVal ByVal means pass “by …

ByVal & ByRef in VB6 — When to use which? Read More »