vbAccelerator - Contents of code file: mMain.bas

This file is part of the download VB6 CD Ripper, which is described in the article CD Ripping in VB Part 1.

Attribute VB_Name = "mMain"
Option Explicit

' ------------------------------------------------------------
' Name:   mMain
' Author: Steve McMahon (steve@vbaccelerator.com)
' Date:   2004-05-06
' Description:
' Starting point for the CD Rip demo.
'
' See http://vbaccelerator.com/
' ------------------------------------------------------------


Private Declare Sub InitCommonControls Lib "comctl32.dll" ()

Public Sub Main()
   InitCommonControls
   
   Dim f As New frmVBCDRip
   f.Show
   
End Sub