Getting started with Visual Basic 6
Remarks#
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.
Installation or Setup
Detailed instructions on getting vb6 set up or installed.
Hello world
' A "Hello, World!" program in Visual Basic.
Module Hello
Sub Main()
MsgBox("Hello, World!") ' Display message on computer screen.
End Sub
End Module