• Home
  • Search Tags
  • About

Visual Basic 6

Topics related to Visual Basic 6:

Getting started with Visual Basic 6

This section provides an overview of what vb6 is, and why a developer might want to use it.

It should also mention any large subjects within vb6, and link out to the related topics. Since the Documentation for vb6 is new, you may need to create initial versions of those related topics.

Installing VB6 on Windows 10

Variables

Function Procedures

  • The two Function Modifiers used in this examples are Public & Private. This Modifiers define the scope of the Function.
  • Functions with a Private scope can only be called from the source file from where they were defined. In our case it can be called with in the Module. And cannot be called outside the Module.
  • Functions with Public scope can be called both outside and inside the Module. Simply we can say as "We can call it any where in the program".
  • Default Modifier of the Function is Public.
  • By default, the function arguments are passed by reference (In a separate topic, this will be explained in detail).

Basic Syntax

Content on the page is taken from Stack Overflow Documentation

This site is NOT affiliated with Stack Overflow or any of the contributors. | Privacy Policy | Terms of Service