vbAccelerator - Contents of code file: mMain.bas

This file is part of the download MP3 ID3 Tags Code, which is described in the article Reading and Writing MP3 ID3v1 and ID3v2 Tags.

Attribute VB_Name = "mMain"
Option Explicit

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

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