heres my class and a standard\template project.... for be added on VB6 type projects..
add these project on: C:\Program Files (x86)\Microsoft Visual Studio\VB98\Template\Projects (where the VS98 was installed)
Console.zip
do we need VBW and VBF files?
heres a sample:
Code:
Option Explicit

Dim Console As New CConsole

Sub Main()
    'your code goes here:

    Console.Writes "Hello World!!!" 
    Console.Read 'pauses here until enter
    Set Console = Nothing 'clear object
End Sub